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
@@ -252,6 +255,7 @@ public KotlinSpringServerCodegen() {
252
255
"@RestController annotations. May be used to prevent bean names clash if multiple generated libraries" +
253
256
" (contexts) added to single project.", beanQualifiers);
254
257
addSwitch(USE_SPRING_BOOT3, "Generate code and provide dependencies for use with Spring Boot ≥ 3 (use jakarta instead of javax in imports). Enabling this option will also enable `useJakartaEe`.", useSpringBoot3);
258
+
addSwitch(USE_SPRING_BOOT4, "Generate code and provide dependencies for use with Spring Boot 4.x. Enabling this option will also enable `useJakartaEe`.", useSpringBoot4);
255
259
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);
256
260
addSwitch(INCLUDE_HTTP_REQUEST_CONTEXT, "Whether to include HttpServletRequest (blocking) or ServerWebExchange (reactive) as additional parameter in generated methods.", includeHttpRequestContext);
257
261
addSwitch(USE_RESPONSE_ENTITY,
@@ -464,6 +468,9 @@ public void processOpts() {
464
468
if (additionalProperties.containsKey(USE_SPRING_BOOT3)) {
0 commit comments