关于Whitelabel Error Page错误
来源:13-2 SpringBoot的搭建与启动
慕用6592966
2020-03-22
在搭建springboot环境时,访问/hello页面时出现“Whitelabel Error Page”错误,可将视频中的
@RequestMapping(name="/hello",method=RequestMethod.GET)
改为
@RequestMapping(value="/hello",method=RequestMethod.GET)
即可解决。
写回答
1回答
-
感谢同学的热心分享,是不是没有使用视频里一样的springboot版本导致的
00
相似问题