JBoss 6: what's the difference between common / lib directories and client?

I found common libraries like Apache commons-lang.jar in /client, but not in /common/lib. Q's:

What is the purpose of the catalog /clientand how does it differ from /common/lib? (I copied my commons-lang.jar from /clientto /common/libto solve CNFE problems.)

+3
source share
1 answer

/common/libis part of the server class path. /clientis not part of the class path, it must provide a JAR so that any server clients can interact with it.

, commons-lang /client, /common/lib, , , , - /client.

/common/lib. JARs . commons-lang, lib WAR EAR.

+4

All Articles