我使用下面的链接进行字节增强:
https://vladmihalcea.com/hibernate-4-bytecode-enhancement/
<build>
<plugins>
<plugin>
<groupId>org.hibernate.orm.tooling</groupId>
<artifactId>hibernate-enhance-maven-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>enhance</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
我在下面有以下错误:
无法执行目标org.hibernate.orm.tooling:hibernate-enhance-maven-plugin:5.2.9.Final:增强(默认)项目MavenHibernateExample:执行默认目标org.hibernate.orm.tooling:hibernate -enhance-maven-plugin:5.2.9。最终:增强失败:无法加载mojo&#39;增强&#39;在插件&#39; org.hibernate.orm.tooling:hibernate-enhance-maven-plugin:5.2.9.Final&#39;由于API不兼容:
org.codehaus.plexus.component.repository.exception.ComponentLookupException:org / hibernate / orm / tooling / maven / MavenEnhancePlugin:不支持的major.minor版本52.0
我看了一下生成的类,但是类与输入相同 - 没有什么是瞬态的或修改过的。我不确定这里发生了什么。我在网上搜索但没有运气。有人知道吗?