weblogic.application.ModuleException: Context path '' is already in use by the module: / application:
- Stop the weblogic server
- Remove all war files from the 'autodeploy' folder in weblogic.
- Then start the weblogic server again
- After that type the URL "http:// localhost:7001/console/" in browser
- Go to " Configure applications" link
- Then select previous projects and the go stop -> When work completes
- Go to Weblogic's
config.xml
- Locate all
<app-deployment>
sections. - Delete them (you may want to backup it somewhere).
In my case it was more than thirty instances of our application:
<app-deployment>
<name>deploy_ear_ear_exploded</name>
<target>AdminServer</target>
<module-type>ear</module-type>
<source-path>*path_to_application*</source-path>
<security-dd-model>DDOnly</security-dd-model>
</app-deployment>
For me works:
1) Uninstall all previous deployments (all ears)
2) Stop de server
3) Go to user_projects/domains/base_domain/servers/AdminServer/tmp and delete all content in this folder (you can back up the content)
4) Start and deploy