Why is “annotatedClasses” needed if there is @Entity?

后端 未结 1 1249
执笔经年
执笔经年 2021-02-07 09:19

Hello I\'m building spring-hibernate application. Do i realy need configuration from below ?

    
        
         


        
1条回答
  •  轮回少年
    2021-02-07 10:15

    Use the docs, Luke!

    [...]Example for an AnnotationSessionFactoryBean bean definition:

    
        
        
            
                test.package.Foo
                test.package.Bar
            
        
    
    

    Or when using classpath scanning for autodetection of entity classes:

    
        
        
    
    

    As you can see you have a choice between defining all classes explicitly or only the package for scanning. does not recognize Hibernate/JPA annotations and hence has no effect.

    0 讨论(0)
提交回复
热议问题