title: Error creating bean
date: 2019-10-11
原本在个人博客上写了一些博文,现转移到CSDN上
spring boot一些错误解决
- 错误:Error creating bean with name ‘webSecurityConfig’: Unsatisfied dependency expressed through field ‘hrService’;
解决:mybatis与spring整合报错,检查一下报错指向的xml中的那些地址是否有错 - 错误:hrservice里不能用hrmapper
解决:hrservice里不能用hrmapper因为hrmapper里没有加@Repository。Spring 自 2.0 版本开始,陆续引入了一些注解用于简化 Spring 的开发。@Repository注解便属于最先引入的一批,它用于将数据访问层 (DAO 层 ) 的类标识为 Spring Bean。 - 错误:Field executorService in com.example.hrservertest.controller.emp.EmpBasicController required a bean of type ‘java.util.concurrent.ExecutorService’ that could not be found.
解决:将ExecutorService相应的@Autowired注释即可解决 - 错误:打包jar发到服务器就报错Template might not exist or might not be accessible在controller层
解决:SpringBoot+Thyemleaf开发环境正常,打包jar发到服务器就报错Template might not exist or might not be accessible在controller层请求处理完了返回时,没有使用@RestController或@ResponseBody而返回了非json格式,这种情况下返回的数据thymeleaf模板无法解析,直接报错。所以改为@RestController或@ResponseBody blog :https://blog.csdn.net/liming_0820/article/details/80878168