Oracle WebLogic Server- Version 11.1x and above
JDK - Version 1.7x and above
The information in this document applies to any platform
Friends, we’re going to do something very simple: create a WAR file from the 'exploded' content of an application. You have asked me about it so I I’ll explain what’s necessary real quick.
Without further ado, let’s start
Exploded: Exploded: deployment mode where files are not packaged in WAR or EAR formats, either for future hot modifications or by application server features
In my case I used a DEMO application with this feature:
Now we execute the command that does the magic:
jar cvf InMemRepClient.war *
Here’s the function of the options we use:
Done!, You already have the WAR file to be deployed, I hope it serves you; SUCCESS!