java - spring boot不能注入JpaRepository接口,提示找不到bean
伊谢尔伦
伊谢尔伦 2017-06-12 09:27:23
0
2
1209

Field studentRepository in com.example.demo.StudentController required a bean of type 'com.example.demo.StudentRepository' that could not be found.

Action:

Consider defining a bean of type 'com.example.demo.StudentRepository' in your configuration.

@RestController
public class StudentController {

    @Autowired
    private StudentRepository studentRepository;

    @GetMapping(value = "/findAll")
    public List<Student> studentList(){
        return studentRepository.findAll();
    }

}

StudentRepository 继承 JpaRepository,应该是个最简单的例子了

一共就一个包,SpringBootApplication和Controller都放在一个包下面,应该不会出现网上的顺序的问题

伊谢尔伦
伊谢尔伦

小伙看你根骨奇佳,潜力无限,来学PHP伐。

全部回复(2)
黄舟

StudentRepository 没有注册

巴扎黑

我自己解决了,jpa的包冲突了。

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板