900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > springboot+thymeleaf项目本地运行正常 打包部署服务器后访问页面500错误

springboot+thymeleaf项目本地运行正常 打包部署服务器后访问页面500错误

时间:2018-08-13 22:14:44

相关推荐

springboot+thymeleaf项目本地运行正常 打包部署服务器后访问页面500错误

项目背景:springboot+thymeleaf

本地运行正常,打包部署服务器后访问页面500错误

接口正常

报错页面如下:

Whitelabel Error PageThis application has no explicit mapping for /error, so you are seeing this as a fallback.Mon Jan 13 18:58:14 CST There was an unexpected error (type=Internal Server Error, status=500).Error resolving template [/web/plant/index], template might not exist or might not be accessible by any of the configured Template Resolvers

解决方法:

把"/"去掉

错误:@RequestMapping("/web/main")错误:return "/web/index";正确:@RequestMapping("web/main")正确:return "web/index";

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。