Error creating entityManagerFactory due to error tying to scan

后端 未结 6 1656
旧巷少年郎
旧巷少年郎 2020-12-30 05:37

I am following http://spring.io/guides/tutorials/data/3 ; I am not sure what I did wrong, but I keep on getting exceptions that I don\'t understand. I tried searching for q

6条回答
  •  囚心锁ツ
    2020-12-30 05:55

    If you use 3.6.10-Final you need exclude javassist (without org. prefix)

        
                org.hibernate
                hibernate-entitymanager
                3.6.10.Final
                compile
                
                    
                        javassist
                        javassist
                    
                
            
           
           
                org.javassist
                javassist
                3.18.2-GA
            
    

提交回复
热议问题