When you import a project from MyEclipse to eclipse, when you start Tomcat, the project reports the following error, causing it to not work:
Warning: [Setpropertiesrule]{server/service/engine/host/context} Setting Property ' source ' to ' org.eclipse.jst.jee.server :* * * ' did not ' find a matchingproperty.
The problem may be that the default root folder in MyEclipse and Eclipse is not the same, so the project path cannot be found in eclipse when it was started, resulting in a failure.
Steps to resolve:
1: First modify the project to a Web project, right-click the project properties, select Project Facets, and convert to faceted form. Next, select Dynamic Web module.
2: Then select Deployment Assembly in the project properties and remove the original default root (webcontent) and add the default root (WebRoot)
3: After the operation is over, redeploy and start Tomcat, it should be.
Eclipse Import MyEclipse Project