本文介绍了Micronaut 1.3.5:找不到页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
GET http://localhost:8080/system/version
GET http://localhost:8080/system/version/
import io.micronaut.http.annotation.Controller;
import io.micronaut.http.annotation.Get;
@Controller("/system")
public class SystemController {
@Get(uri = "/version/")
public String version() {
return SystemController.class.getPackage().getImplementationVersion();
}
}
导致
{
"message": "Page Not Found",
"_links": {
"self": {
"href": "/system/version/",
"templated": false
}
}
}
如何解决这个问题?
推荐答案
如果这样的控制器方法返回 null
,将导致 404.我希望 SystemController.class.getPackage().getImplementationVersion()
计算结果为 null
.
If a controller method like that returns null
, that will result in a 404. I expect that SystemController.class.getPackage().getImplementationVersion()
is evaluating to null
.
这篇关于Micronaut 1.3.5:找不到页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!