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.
问候,
无论如何,是否可以在 EAR 档案的类路径或另一个 WAR 档案上使用 WAR 的类,而不必使用这些 WAR 类创建 jar 文件?
干杯
您可以在要使用 WAR 中的类的模块中通过 MANIFEST.MF 条目“Class-Path”来执行此操作。或者您可以使用供应商相关的方式(例如 jboss 7 在部署描述 jboss-deployment-structure.xml 中有 modules-isolation 参数)。
恕我直言,您应该使用公共库创建 JAR,而不是将 WAR 类公开给其他模块,否则您的部署中将拥有真正紧密耦合的模块。