- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Prabhat,
Can you verify how you created the jar files ?
I have encountered issues when i used winzip or for that matter jar in a different way.
If you are using Eclipse and creating jar then you will run into issue (where the jar files are compressed).
try using command line jar command or ant command with the following option i.e disable compression.
<jar destfile="${deploy.dir}/${jar.name}" keepcompression="false" compress="false" >
<zipfileset dir="${classes.dir}" includes="**/*.class"/>
<zipfileset dir="${src.dir}" includes="**/*.xml,**/*.jar"/>
<zipfileset dir="." includes="icons/*.gif"/>
</jar>
or ..
jar -cvf 0 .
Views
Replies
0 Likes
Total Likes