I use Eclipse Luna and get
Failed to publish server configuration for Tomcat v7.0 Server on localhost.
Several contexts have a / TestProject path.
However, I can fix this by creating a path for docbase = /in the context line in server.xml, as in the contextdocBase="abc" path="/" reloadable="true" source="org.eclipse.jst.jee.server:abc"/> docBase="xyz" path="/TestProject" reloadable="true" source="org.eclipse.jst.jee.server:xyz"/>
So, I wanted to know what role the path attribute plays in the context and how to fix it forever. I saw the path carry over when I copy the application to another application.
source
share