I need to create a module for Spring framework - org.springframework. There are many cans, is there any way to say: include all banks in this org / springframework / main / folder? Something like below.
<?xml version="1.0" encoding="UTF-8"?> <module xmlns="urn:jboss:module:1.1" name="nuance.classes"> <resources> <resource-root path="./*"/> </resources> </module>
above does not seem to work. Is any manual / document available for this?
The documentation for the module system and class loader is here .
, JAR , . JAR API, JBoss AS 7. , , , .
, , , , API-, . EclipseLink; , EclipseLink . (${ECLIPSELINK_JAR_NAME} , EclipseLink , module.xml ).
${ECLIPSELINK_JAR_NAME}
module.xml
( ), :
<?xml version="1.0"?> <module xmlns="urn:jboss:module:1.0" name="nuance.classes"> <resources> <resource-root path="." /> </resources> </module>