Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须在 JBoss AS 7 上开发一个大型 Java EE 6 应用程序。该应用程序很大,必须拆分为模块(这是一个请求)。
为了保持模块化,我将它组织成 .war 和 .jar 等模块。一对,.war + .jar,对应一个应用程序模块。一些 .jar 必须共享相同的实体。
现在我必须复制实体以保持模块化,或者最好创建一个 .jar 作为库在其他 jar 之间共享?有最佳实践吗?
您可以拥有一个 jar 文件并让各个应用程序使用 Maven 将其拉入其类路径中。