我想将请求映射到处理 URL 的控制器,例如:
/weather?city=London
/weather?city=London&country=GB
注意城市和国家是可选参数。
这个简单的控制器是:
@Controller("/weather")
class WeatherController(...) {
@Get(produces = [MediaType.APPLICATION_JSON])
fun getWeather(city: String?, country: String?): Flux<Any> = ...
但似乎有一些映射问题:
java.lang.NoSuchMethodError: com.codependent.weatherapp.controller.WeatherController.getWeather(Ljava/lang/String;Ljava/lang/String;)Lreactor/core/publisher/Flux;
at com.codependent.weatherapp.controller.$WeatherControllerDefinition$$exec1.invokeInternal(Unknown Source)
at io.micronaut.context.AbstractExecutableMethod.invoke(AbstractExecutableMethod.java:145)
更新:该项目在Github上可用上可用。
我尝试了几种映射可选参数的方法,但都没有奏效:
1) 遵循 URI 路径变量文档 http://localhost:8080/weather/test1
@Get(value = "/test1{?city,country,cityIds}", produces = [MediaType.APPLICATION_JSON])
fun getWeather(city: Optional<String>, country: Optional<String>, cityIds: Optional<String>) = "The weather is...".toMono()
2)只表示可选,没有实际的请求参数映射——http ://localhost:8080/weather/test2
@Get(value = "/test2", produces = [MediaType.APPLICATION_JSON])
fun getWeather2(city: Optional<String>, country: Optional<String>, cityIds: Optional<String>) = "The weather is...".toMono()
3)Kotlin方式,只是表达参数的可空性——http ://localhost:8080/weather/test3
@Get(value = "/test3", produces = [MediaType.APPLICATION_JSON])
fun getWeather3(city: String?, country: String?, cityIds: String?) = "The weather is...".toMono()