在我的项目中,将使用不同的模块生成两个独立的耳朵。
我的问题是找出如何绑定 Websphere 的库,实际上如何在 maven 项目中使用 Websphere。第二个问题是找出 poms 的样子。
EAR1 --> 模 A、模 B、模 C
EAR2 --> 模 A、模 D、模 E
模块 A --> EJB 模块
模块 B --> WEB 模块
模块 C --> EJB 模块
模块 D --> EJB 模块
模块 E --> EJB 模块
应用服务器 --> Websphere 8
使用的技术:MyFaces、OpenJPA
我可以在 EAR 项目中使用类似的东西:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<modules>
<webmodule>
../ModulB
</webmodule>
<ejbmodule>
../ModulA
</ejbmodule>
<ejbmodule>
../ModulC
</ejbmodule>
</modules>
</configuration>
</plugin>