在spring boot应用程序中,build.gradle:
compile("org.springframework.boot:spring-boot-devtools")
compile('org.grails:gorm-hibernate5-spring-boot:6.1.2.RELEASE')
compile('org.grails:grails-datastore-gorm:6.1.2.RELEASE')
compile('org.grails:grails-datastore-gorm-support:6.1.2.RELEASE')
compile('org.grails:grails-datastore-gorm-validation:6.1.2.RELEASE')应用程序会在运行时抛出异常。
Error performing load command : org.hibernate.HibernateException: Javassist Enhancement failed为什么?帮帮我?
发布于 2017-08-31 11:44:16
找到另一种方法。
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("org.springframework:springloaded:1.2.7")
}更改代码后,单击Build-“Build project。
https://stackoverflow.com/questions/45852485
复制相似问题