JBoss AS 7.1 - how to include everything in module.xml when creating modules

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?

+3
source share
2 answers

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 ).

+1

( ), :

<?xml version="1.0"?>
<module xmlns="urn:jboss:module:1.0" name="nuance.classes">
    <resources>
        <resource-root path="." />
    </resources>
</module>
+1

All Articles