Eclilpse changes the context root of a WebLogic web application

For some reason, my Eclipse sometimes changes the root of my web application context in the weblogic.xml file to the name of the project. The project name is different from the context root. How can this be prevented?

+3


source to share


1 answer


Find the following file in the workspace:

{workspace}\{project name}\.settings\org.eclipse.wst.common.component

      



Then edit it with the following:

<property name="context-root" value="your context root"/>

      

0


source







All Articles