Search code examples
jsfjakarta-eewarear

Explode an EAR file


My JSF Project is deployed as an EAR file. It includes some war files also. I need an exploded version of the EAR (including exploded inner WARs).

Is there any tool to do it?


Solution

  • Programmatically, or manually? EAR and WAR files, like JAR files, are really just ZIP files with a known internal file/folder structure. That means you can extract EARs and WARs like any other ZIP file, with code or with a desktop application.


    Command line tool for windows would be great.