tomcat启动总是会有一个警告警告: did not find a matching property.
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tomcat启动总是会有一个警告警告: did not find a matching property.相关的知识,希望对你有一定的参考价值。
警告: [SetContextPropertiesRule]Context Setting property 'source' to 'org.eclipse.jst.jee.server:Struts2Demo' did not find a matching property.
tomcat启动时总是有这个警告,在service option下面我选择的也是public modulecontext toseparate XML files,求大神...
server at localhost页面中找到server options选项
选中其中的选项”Publish modual contexts to
separat XML files“,ctr+s,启动tomcat追问
我在问题里面已经说过了,我选择的是Publish modual contexts to
separat XML files这个选项
Project---Clean---Clean projects selecked below(选中当前项目)
Tomcat无法启动org.eclipse.jst.jee.server:xxx' did not find a matching property
现象:tomcat启动后,部署在本地tomcat的应用没有启动,且应用日志在console控制台中也没有打印
控制台中输出只有部分警告,内容如下:
警告: [SetContextPropertiesRule]{Context} Setting property \'source\' to \'org.eclipse.jst.jee.server:xxx\' did not find a matching property.
解决方案:
(1) 双击Servers标签页中的服务器,在 【Server Options】 菜单中,勾选【Publish module contexts to separate XML files】
(2)修改工作空间应用服务目录下【.settings】目录中【org.eclipse.wst.common.project.facet.core.xml】文件
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<installed facet="java" version="1.7"/>
<installed facet="jst.web" version="3.0"/>
<installed facet="wst.jsdt.web" version="1.0"/>
</faceted-project>
修改为
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<fixed facet="wst.jsdt.web"/>
<fixed facet="jst.web"/>
<fixed facet="java"/>
<installed facet="java" version="1.7"/>
<installed facet="jst.web" version="3.0"/>
<installed facet="wst.jsdt.web" version="1.0"/>
</faceted-project>
以上是关于tomcat启动总是会有一个警告警告: did not find a matching property.的主要内容,如果未能解决你的问题,请参考以下文章
Tomcat 启动出现警告问题Setting property 'minSpar eThreads' to '25' did not find a matching p
Tomcat无法启动org.eclipse.jst.jee.server:xxx' did not find a matching property
tomcat SERVER启动时did not find a matching property错误解决办法
从 Eclipse 启动 Tomcat 时出现“SetPropertiesRule”警告消息 [重复]