Closed as not planned
Description
[http-nio-8090-exec-7] WARN org.springframework.core.LocalVariableTableParameterNameDiscoverer - Using deprecated '-debug' fallback for parameter name resolution. Compile the affected code with '-parameters' instead or avoid its introspection: com.octoperf.analysis.rest.server.controller.BenchReportsController
[http-nio-8090-exec-1] WARN org.springframework.core.LocalVariableTableParameterNameDiscoverer - Using deprecated '-debug' fallback for parameter name resolution. Compile the affected code with '-parameters' instead or avoid its introspection: com.octoperf.design.rest.spring.ProjectFilesController
[http-nio-8090-exec-2] WARN org.springframework.core.LocalVariableTableParameterNameDiscoverer - Using deprecated '-debug' fallback for parameter name resolution. Compile the affected code with '-parameters' instead or avoid its introspection: com.octoperf.analysis.rest.server.controller.GraphsController
[http-nio-8090-exec-4] WARN org.springframework.core.LocalVariableTableParameterNameDiscoverer - Using deprecated '-debug' fallback for parameter name resolution. Compile the affected code with '-parameters' instead or avoid its introspection: com.octoperf.analysis.rest.server.controller.MetricsController
Using Spring Boot 3.0.2 with Spring 6.0.4.
Example Controller:
@RestController
@RequestMapping("/analysis/bench-reports")
@AllArgsConstructor(access = PACKAGE)
@FieldDefaults(level = PRIVATE, makeFinal = true)
class BenchReportsController extends AbstractUserCrudController<BenchReport> {
@NonNull
BenchReportCrudService benchReports;
....
}
We don't use any parameter name in autowired constructors.