Spring boot启动报Error creating bean with name '控制器名字': Unsatisfied dependency expressed th

Spring boot启动报依赖不足的错误

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'Controller': Unsatisfied dependency expressed through field 'Service'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'Service': Unsatisfied dependency expressed through field 'tdao'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'temporaryDao': Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: Failed to create query for method public abstract com.entity.Temporary com.dao.TemporaryDao.FindByNameAndAddressAndTextureAndSpecification(java.lang.String,java.lang.String,java.lang.String,java.lang.String)! No property findByName found for type Temporary!

不要着急这不是什么大的问题,主要是依赖不足。
1.你首先需要看看你的注解都加了吗?无论是Mybatis还是hibernate都是依赖注解的,所以需要先看看你的controller,service,entity的注解都加了吗?
2.一般步骤一都能解决,若是不能,而且你用的是hibernate,你就看看你的接口命名是否符合JPA命名规范,尤其是开头的find不要大写。
3.如果使用的是mybatis那么你就看看你的jar包有没有冲突,或者版本问题。
目前我就遇到这几种情况,如果能帮到你,很开心!如果没有,欢迎留言。

你可能感兴趣的:(Springboot整合jpa)