jar、war、ear

时间:2020-12-23 16:03:49

jar、war、ear

jar、war、ear

jar、war、ear

jar、war、ear

附加jboss里面的application.xml

<?xml version=”1.0″ encoding=”UTF-8″?>
<application xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/application_5.xsd"
version="5">
<display-name>xxx</display-name>
<module>
<!-- 配置Web应用的模块 -->
<web>
<web-uri>xxx.war</web-uri>
<context-root>xxx</context-root>
</web>
</module>
<module>
<!-- 配置EJB组件的模块 -->
<ejb>xxxxxx.jar</ejb>
</module>
</application>