Find Spring Web / WebFlux smells
Recipe ID
org.openrewrite.kotlin.spring.FindSpringWebSmells$KtRecipeArtifact
io.moderne.recipe:recipes-kotlinController endpoints worth a closer look: ResponseEntity<T> returns that always emit 200, verb-less @RequestMapping, @RequestMapping(method = [...]) candidates for shortcut annotations, @PathVariable parameters without explicit names, primitive @RequestBody shapes, POST endpoints missing @ResponseStatus(CREATED), and reactive block() calls that stall the event loop.
Usage
This recipe has no required configuration options. You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.kotlin.spring.FindSpringWebSmells$KtRecipeIf the recipe isn’t available locally, install it with:
mod config recipes jar install io.moderne.recipe:recipes-kotlin:0.2.0Definition
This recipe runs the following recipes in order.
- Find
@RestControllermethods returningResponseEntity<T>org.openrewrite.kotlin.spring.FindControllerReturningResponseEntity$KtRecipe - Find
@RequestMapping(...)without an HTTP methodorg.openrewrite.kotlin.spring.FindRequestMappingWithoutVerb$KtRecipe - Find
@RequestMapping(method = [RequestMethod.GET])candidates for@GetMappingorg.openrewrite.kotlin.spring.FindRequestMappingMethodGetMapping$KtRecipe - Find
@PathVariableparameters without an explicit nameorg.openrewrite.kotlin.spring.FindPathVariableWithoutName$KtRecipe - Find
@RequestBodyon primitive parametersorg.openrewrite.kotlin.spring.FindRequestBodyOnPrimitive$KtRecipe - Find
@PostMappingmethods missing@ResponseStatus(HttpStatus.CREATED)org.openrewrite.kotlin.spring.FindMissingResponseStatus$KtRecipe - Find
Mono.block/Flux.blockFirst/Flux.blockLastcallsorg.openrewrite.kotlin.spring.FindWebFluxBlocking$KtRecipe - Find
Mono.block()calls in non-test codeorg.openrewrite.kotlin.spring.FindMonoFlatMapBlock$KtRecipe
Data tables
Structured output this recipe can produce.
- Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats