zoukankan      html  css  js  c++  java
  • 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>

  • 相关阅读:
    hdu-3376-Matrix Again(最小费用最大流)
    CF-164C. Machine Programming(最小费用最大流)
    splay模板
    POJ-3580-SuperMemo(splay的各种操作)
    pygame安装
    hg 证书验证失败
    hdu-3487-Play with Chain-(splay 区间翻转,切割,插入)
    jvm 重载 重写
    多线程踩坑
    hashmap时间复杂度
  • 原文地址:https://www.cnblogs.com/zhangliang88/p/12799266.html
Copyright © 2011-2022 走看看