When trying to run my app with eclipse/linux on apache tomcat on my local host
the application runs fine but, I got the following warning:
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property ‘source’ to ‘org.eclipse.jst.jee.server:appname’ did not find a matching property.
any ideas what does this warning means, how to resolve it?
Despite this question being rather old, I had to deal with a similar warning and wanted to share what I found out.
First of all this is a warning and not an error. So there is no need to worry too much about it. Basically it means, that Tomcat does not know what to do with the
sourceattribute from context.This
sourceattribute is set by Eclipse (or to be more specific the Eclipse Web Tools Platform) to theserver.xmlfile of Tomcat to match the running application to a project in workspace.Tomcat generates a warning for every unknown markup in the
server.xml(i.e. thesourceattribute) and this is the source of the warning. You can safely ignore it.