springboot
Pickup_No
路再远,朝前走,再慢也会有不同的风景。
展开
-
springboot+thymeleaf使用return "xxx"跳转页面失败
springboot+thymeleaf使用retrun “xxx”跳转页面的时候发现跳转不了。检查的时候发现是在controller使用了@restController注解,只需要改成@Controller注解就可以,原来@RestController注解是@Controller注解+@ResponseBody注解结合。@Responsebody后,返回结果直接写入HTTP response...原创 2020-03-14 19:55:45 · 645 阅读 · 0 评论 -
关于spring boot自动注入出现Consider defining a bean of type 'xxx' in your configuration问题解决方案
关于spring boot自动注入出现Consider defining a bean of type ‘xxx’ in your configuration问题解决方案使用springboot搭建项目的时候出现了springboot无法扫描到mapper文件的问题。 经过查找,发现出现这个情况都基本是mapping.xml文件中的namespace路径出现问题,或者是没有指定扫描mapper文...原创 2020-03-14 17:06:55 · 4036 阅读 · 0 评论