java – Spring无法找到JpaRepository

前端之家收集整理的这篇文章主要介绍了java – Spring无法找到JpaRepository前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用JavaConfig我在查找@Repository Spring bean时遇到问题.

存储库接口定义如下:

@Repository
public interface UserRepository extends JpaRepository

配置定义如下:

@Configuration
@ComponentScan("com.example")
@EnableAutoConfiguration
@EnableJpaRepositories("com.example")
public class SampleApplication extends SpringBootServletInitializer {
...

包结构如下所示:

com.example
     configuration
           SampleApplication
     repository
           UserRepository

在日志文件中,我看到存储库被认为是bean定义的候选者,但是:

ClassPathBeanDefinitionScanner | Ignored because not a concrete top-level class:

趣味事实

如果我将SampleApplication类移动到com.example包,一切都会开始工作.

我缺少什么想法?

最佳答案
如果JPA实体不在com.example.configuration的子包中,则可能需要使用Spring Boot的@EntityScan注释.我还建议您将@Configuration从SpringBootServletInitializer移到自己的类中.

如果您可以将配置类上移到某个级别,则可以同时删除@ComponentScan,@ EnableJpaRepositories和@EntityScan注释(请参阅http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#using-boot-locating-the-main-class)

如果@EntityScan没有解决问题,也许您可​​以提供我们可以查看的示例项目?

原文链接:https://www.f2er.com/spring/431815.html

猜你在找的Spring相关文章