且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

从JBoss EAP 6.1中排除JPA子系统 - 尝试在JBoss EAP 6.1中使用JPA 2.1

更新时间:2023-09-21 21:39:04

We found another solution.
You can also exclude the jpa subsystem in jboss-deployment-structure.xml of the war:

<exclude-subsystems>
    <subsystem name="jpa" />
</exclude-subsystems>
<exclusions>
    <module name="javaee.api" />
</exclusions>

相关阅读

推荐文章