This question already has an answer here:
When I start Tomcat (6.0.18) from Eclipse (3.4), I receive this message (first in the log):
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server: (project name)' did not find a matching property.
Seems this message does not have any severe impact, however, does anyone know how to get rid of it?
I had the same problem with Eclipse 3.4(Ganymede) and dynamic web project.
The message didn't influence successfull deploy.But I had to delete row
from org.eclipse.wst.common.component file in .settings folder of Eclipse
I am using Eclipse. I have resolved this problem by the following:
You will not get any this kind of error.
I am posting my answer because I suspect there might be someone out there for whom the above solutions might not have worked.
So, you are getting a warning,
Rather than disabling this warning by checking that option in Server configuration (I did try that) I would suggest you do this:
This means that something is wrong with your project not with eclipse or the server.
You probably know that the Tomcat container loads up context of all the synchronized apps at the start.
Now if you successfully found that there is a bug in your app, the probable place would be look for a web.xml file which the container uses for loading the app. In my case I had misspelled a name in servlet mapping which made me debug meaninglessly for 3 hours. Your problem might be someplace else.
And another thing, if you have many apps synchronized with the server,there is a possibility some other app's context might be the source of problem. Try debugging one by one.
From Eclipse Newsgroup:
I realize that this doesn't answer how to get rid of the warning, but I hope it helps.
I copied the dynamic Webproject before the issue came up. So, changing the org.eclipse.wst.common.component file in the .settings directory solved the issue for me. The other solutions did not work.
Make sure you have correct jsp file name in web.xml file. By replacing default .jsp filename in web.xml with my current filename solved the problem