Ho un file JAR per l'autorizzazione. Ne ho bisogno per ciascuno dei miei file WAR. Tutti i file WAR sono racchiusi in un file EAR. Devo ripetere questo JAR comune in ogni WAR, o esiste una struttura per le librerie comuni?I JAR comuni devono essere ripetuti in WAR in un EAR?
Quindi il mio esempio simile a questa ...
big.ear
- META-INF
- MANIFEST.MF
- application.xml
- appl1.war
- META-INF
- MANIFEST.MF
- WEB-INF
- web.xml
- lib
- unique1.jar
- unique2.jar
- unique3.jar
- common1.jar
- jsps/html/etc
- appl2.war
- META-INF
- MANIFEST.MF
- WEB-INF
- web.xml
- lib
- unique3.jar
- unique4.jar
- common1.jar
- jsps/html/etc
- appl3.war
- META-INF
- MANIFEST.MF
- WEB-INF
- web.xml
- lib
- unique5.jar
- common1.jar
- jsps/html/etc
Ognuno dei miei applicazioni guerra può vedere common1.jar, ma è nel EAR tre volte.
Dove nella struttura EAR è possibile inserire common1.jar in modo che appl1, appl2 e appl3 possano vederlo senza ripetersi tre volte?
Guardando dentro. – dacracot
Il link non funziona al momento. – Prince