您的位置:首页 > 运维架构 > Tomcat

解决tomcat启动产生[SetPropertiesRule]警告问题

2014-04-08 14:30 417 查看
[SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.j2ee.server:*' did not find a matching property.

出现SetPropertiesRule警告的原因是因为Tomcat在server.xml的Context节点中不支持source属性

<Context docBase="..." path="/cont" source="org.eclipse.jst.j2ee.server:*"/>

解决方法:

Window--Show View-other..--Servers--在Servers视图里双击创建的server,然后在其server的配置界面中选中"Publish module contexts to separate XML files"选项。

具体“Publish module contexts to separate XML files”是什么意思,

请看Tomcat Publishing Options介绍:

Two new options which affect publishing are now available in the Server Options section of the Tomcat server editor. The Tomcat server must be 5.0.x or later for these options to be enabled. The Serve modules without publishing option does what it says. Web content will be served directly from the "WebContent" folder of the Dynamic Web Project. A customized context is used to make the project's dependencies available in the Web application's classloader. The Publish module contexts to separate XML files option will publish contexts using the preferred method of separate XML files under the "conf/Catalina/localhost" directory, rather than keeping them in the "server.xml" file. A couple of improvements for this option are noted in Bugs 180931 and 180936.

转载参考:
http://hi.baidu.com/luoyeyilin/item/9dd1eff00f599fd242c36ab5 http://zhang-yingjie-qq-com.iteye.com/blog/313284
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐