警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context}Setting property 'source' to 'org.eclipse.jst.jee.server:...' did notfind a matching property.
[SetPropertiesRule]警告的原因是Tomcat6.0的server.xml的context节点中不支持source属性,详细可以访问tomcat.apache.org,具体相关内容是:
For Tomcat 6, unlike Tomcat 4.x, it is NOT recommended to place <Context> elements directly in the server.xml file. This is because it makes modifying the Context configuration more invasive since the main conf/server.xml
file cannot be reloaded without restarting Tomcat.
通关官网文档就可以轻松找到解决办法了。
这里通过修改Tomcat server配置(使用的是eclipse)。关闭server,然后在server视图中双击server,打开配置界面,选中下面的”Publish module contexts to separate XML files”,保存退出。
详细解决办法:
1.打开服务器视图:窗口 > 显示视图 > 服务器 > 服务器
2.双击服务器列表中的Tomcat,打开“服务器概述”窗口
3.选中"Publish module contexts to separate XML files"选项。
小提示:如果Tomcat处于启动状态,请先停止,否则,在保存服务器设置时,提示不能保存。