由于某种原因,我的Eclipse有时会将weblogic.xml文件中Web应用程序的上下文根更改为项目的名称。项目的名称与上下文根不同。我该如何预防?

最佳答案

将以下属性添加到您的pom.xml中:

<properties>
<m2eclipse.wtp.contextRoot>my-context</m2eclipse.wtp.contextRoot>
</properties>

08-16 18:15