You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -245,10 +223,10 @@ public KotlinSpringServerCodegen() {
245
223
addSwitch(GRADLE_BUILD_FILE, "generate a gradle build file using the Kotlin DSL", gradleBuildFile);
246
224
addSwitch(USE_SWAGGER_UI, "Open the OpenApi specification in swagger-ui. Will also import and configure needed dependencies", useSwaggerUI);
247
225
addSwitch(SERVICE_INTERFACE, "generate service interfaces to go alongside controllers. In most " +
248
-
"cases this option would be used to update an existing project, so not to override implementations. " +
249
-
"Useful to help facilitate the generation gap pattern", serviceInterface);
226
+
"cases this option would be used to update an existing project, so not to override implementations. " +
227
+
"Useful to help facilitate the generation gap pattern", serviceInterface);
250
228
addSwitch(SERVICE_IMPLEMENTATION, "generate stub service implementations that extends service " +
251
-
"interfaces. If this is set to true service interfaces will also be generated", serviceImplementation);
229
+
"interfaces. If this is set to true service interfaces will also be generated", serviceImplementation);
252
230
addSwitch(USE_BEANVALIDATION, "Use BeanValidation API annotations to validate data types", useBeanValidation);
253
231
addSwitch(SKIP_DEFAULT_INTERFACE, "Whether to skip generation of default implementations for interfaces (Api interfaces or Delegate interfaces depending on the delegatePattern option)", skipDefaultInterface);
254
232
addSwitch(REACTIVE, "use coroutines for reactive behavior", reactive);
@@ -257,8 +235,8 @@ public KotlinSpringServerCodegen() {
257
235
addSwitch(DELEGATE_PATTERN, "Whether to generate the server files using the delegate pattern", delegatePattern);
258
236
addSwitch(USE_TAGS, "Whether to use tags for creating interface and controller class names", useTags);
259
237
addSwitch(BEAN_QUALIFIERS, "Whether to add fully-qualifier class names as bean qualifiers in @Component and " +
260
-
"@RestController annotations. May be used to prevent bean names clash if multiple generated libraries" +
261
-
" (contexts) added to single project.", beanQualifiers);
238
+
"@RestController annotations. May be used to prevent bean names clash if multiple generated libraries" +
239
+
" (contexts) added to single project.", beanQualifiers);
262
240
addSwitch(USE_SPRING_BOOT3, "Generate code and provide dependencies for use with Spring Boot 3.x. (Use jakarta instead of javax in imports). Enabling this option will also enable `useJakartaEe`.", useSpringBoot3);
263
241
addSwitch(USE_FLOW_FOR_ARRAY_RETURN_TYPE, "Whether to use Flow for array/collection return types when reactive is enabled. If false, will use List instead.", useFlowForArrayReturnType);
264
242
addSwitch(DECLARATIVE_INTERFACE_WRAP_RESPONSES,
@@ -361,7 +339,7 @@ public List<AnnotationLibrary> supportedAnnotationLibraries() {
0 commit comments