我们在spring boot启动的时候是没有问题的,但是在我们使用浏览器访问网址的时候报出如下错误:
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Sun May 26 20:42:16 CST 2019
There was an unexpected error (type=Internal Server Error, status=500).
No message available
错误分析:
1:spring boot出现上述的错误是因为我们的应用没有明白需要映射什么,一般情况下是因为我们在视图类中使用了@Controller注解,导致springboot扫描不到我们的controller视图类。
2:是因为我们浏览器访问的url与“@RequestMapping("/xxxxxxx")”注解中配置的映射地址不一致导致的。
解决方案:
将@Controller注解改成@RestController注解便可以解决问题1,如果是问题2,则请输入正确的访问url即可。