SpringBoot启动异常:Error creating bean with name 'permissionController'

SpringBoot+SpringDataJPA启动异常:org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'permissionController'

报错原因:SpringDataJPA的接口命名与数据库中相应字段不匹配

       将数据库表中的pid字段修改为parent_id字段后PermissionDao中的findByTypeAndPid()方法名忘记修改,导致hibernate无法自动获取数据库中的相应字段。将findByTypeAndPid()改为findByTypeAndParentId()即可。

 

你可能感兴趣的:(SpringBoot启动异常:Error creating bean with name 'permissionController')