I have a basic question about running a Java EE application on Weblogic using maven in eclipse.
I use OEPE (Oracle Enterprise pack for Eclipse) which comes with some plu
Let me provide you with my checklist to make my web application hot-deployed on Weblogic. This checklist assumes a weblogic version which implements Servlet 2.5 and assumes your project is a maven one which is configured to run maven-compiler-plugin for JDK 1.6. In other words your weblogic version is 10.x.x and your POM includes the following snippet:
org.apache.maven.plugins
maven-compiler-plugin
2.3.2
1.6
Use OEPE plugin to create a new Weblogic Web module Weblogic.xml file:
Take note of the value
myappcontextroot
it will be used later in the hot-deployment
Execute Maven update project from Eclipse context menu of your project
Execute Maven clean install
Please follow these steps literally, it is really worth it!