I have an enterprise application .ear
which includes few war
files.
My .ear
file also includes the jersey-server.jar
and log4j.jar
These jar files are also part of the shared library that is mapped to the ear. I would want to remove these files from ear altogether as they are already part of shared library.
when i remove these jars from ear, the http
resource that is part of the war files goes unrecognized, 404 error
and logs are not redirected to log files.
Can't I remove these files from the ear
, use just shared libraries, which helps in reducing the size of the ear ?
Application is deployed in Websphere 8.
Thanks, Ravi.