@@ -53,18 +53,21 @@ public SpringfoxServerCodegen() {
53
53
supportingFiles .clear ();
54
54
supportingFiles .add (new SupportingFile ("pom.mustache" , "" , "pom.xml" ));
55
55
supportingFiles .add (new SupportingFile ("README.mustache" , "" , "README.md" ));
56
- supportingFiles .add (new SupportingFile ("ApiException .mustache" ,
56
+ supportingFiles .add (new SupportingFile ("apiException .mustache" ,
57
57
(sourceFolder + File .separator + apiPackage ).replace ("." , java .io .File .separator ), "ApiException.java" ));
58
- supportingFiles .add (new SupportingFile ("ApiOriginFilter .mustache" ,
58
+ supportingFiles .add (new SupportingFile ("apiOriginFilter .mustache" ,
59
59
(sourceFolder + File .separator + apiPackage ).replace ("." , java .io .File .separator ), "ApiOriginFilter.java" ));
60
- supportingFiles .add (new SupportingFile ("ApiResponseMessage .mustache" ,
60
+ supportingFiles .add (new SupportingFile ("apiResponseMessage .mustache" ,
61
61
(sourceFolder + File .separator + apiPackage ).replace ("." , java .io .File .separator ), "ApiResponseMessage.java" ));
62
- supportingFiles .add (new SupportingFile ("NotFoundException .mustache" ,
62
+ supportingFiles .add (new SupportingFile ("notFoundException .mustache" ,
63
63
(sourceFolder + File .separator + apiPackage ).replace ("." , java .io .File .separator ), "NotFoundException.java" ));
64
64
65
-
66
- supportingFiles .add (new SupportingFile ("SwaggerConfig.mustache" ,
65
+ supportingFiles .add (new SupportingFile ("swaggerConfig.mustache" ,
67
66
(sourceFolder + File .separator + configPackage ).replace ("." , java .io .File .separator ), "SwaggerConfig.java" ));
67
+ supportingFiles .add (new SupportingFile ("webApplication.mustache" ,
68
+ (sourceFolder + File .separator + configPackage ).replace ("." , java .io .File .separator ), "WebApplication.java" ));
69
+ supportingFiles .add (new SupportingFile ("webMvcConfiguration.mustache" ,
70
+ (sourceFolder + File .separator + configPackage ).replace ("." , java .io .File .separator ), "WebMvcConfiguration.java" ));
68
71
69
72
languageSpecificPrimitives = new HashSet <String >(
70
73
Arrays .asList (
0 commit comments