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>

  • 相关阅读:
    RabbitMQ资料
    在网页打开本地程序的思路
    HttpClient的巨坑
    webbrowser设置为相应的IE版本
    cpupower:Shows and sets processor power related values
    golang 国内环境配置
    OSX 创建 randisk(或称 tmpfs)
    Gentoo 搭遗
    ubuntu 去除开机背景
    fabric && cita 调研对比
  • 原文地址:https://www.cnblogs.com/zhangliang88/p/12799266.html
Copyright © 2011-2022 走看看