tomcat启动时报No rules found matching 'Server/Service/Engine/Host/context'
tomcat是8.0版本.
在eclipse启动时,第二行报这个, 同时项目也没加载(tomcat启动成功了).
网上搜了半天, 试了半天, 没搞定. 最后不经意间发现:
<Context docBase="xxxx" path="/" reloadable="true"/>
这种不带</Context>直接结束是错误的......
<Context docBase="xxxxx" path="/" reloadable="true"></Context>
非得是这样.....真是活的久了什么都能见到
tomcat启动时报No rules found matching 'Server/Service/Engine/Host/context'的更多相关文章
- Tomcat 启动时 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context}
		在Eclipse 中,启动Tomcat 时,出现: 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting proper ... 
- 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to
		警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 警告: [SetPro ... 
- tomcat日志警告WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
		日志中有警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did ... 
- 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:fhcq-oa' did not find a matching property.
		当你在使用Eclipse运行web项目时,你可能会看到控制台出现: 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Settin ... 
- [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.j2ee.server:lovemu' did not find a matching property.
		[SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.js ... 
- 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:Weixin' did not find a matching property.
		警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclips ... 
- 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} 解决方法
		Tomcat启动时出现红色警告内容 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'sour ... 
- 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context}Setting property 'source' to 'org.eclipse
		当你用Eclipse运行web项目的时候,你就会看到控制台出现:WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Set ... 
- 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context}
		警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to'org.eclipse ... 
随机推荐
- Git常用命令与入门
			Git 仓库就是那个.git 目录,其中存放的是我们所提交的文档索引内容,Git 可基于文档索引内容对其所管理的文档进行内容追踪,从而实现文档的版本控制..git目录位于工作目录内.对于任何一个文件, ... 
- Kafka的基本概念
			Kafka的前身是由LinkedIn开源的一款产品,2011年初开始开源,加入了 Apache 基金会,2012年从 Apache Incubator 毕业变成了 Apache 顶级开源项目. Top ... 
- javascript优先级注意点
			javascript 优先级 注意一下 && 和 == 号之间的优先级关系 请首先看如下代码, 判断下 && 和 == 的优先级 const emptyObj = {n ... 
- Spatiotemporal continuous estimates of PM2.5 concentrations in China, 2000–2016: A machine learning method with inputs from satellites, chemical transport model, and ground observations
			写在前面 首先,看完查了一下这个期刊 Environment International,是1区的文章,影响因子7.297!不愧是优秀的期刊,文章质量很高,内容很丰富. 内容 主要是PM25反演,利用 ... 
- kkk
			#!/usr/bin/env python3# coding=utf-8# Author: yannanxiu"""create_rsa_key() - 创建RSA密钥m ... 
- 欧拉法求解常微分方程(c++)
			#include<iostream> #include<iomanip> using namespace std; int main() { double x, y, h; ... 
- HDU 6212 Zuma
			Zuma 这个题没有素质!它卡常! 我发现网上很多人的题解都写得很奇怪,也不好确定正确性,所以我借这篇题解表达一下愚见 定义$ dp[i][j][0...4]$表示 0:消完了 1:还剩1个0 2:还 ... 
- JS简单获取当前日期时间的方法(yyyy-MM-dd hh:mm:ss)
			<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xht ... 
- [Gamma阶段]第五次Scrum Meeting
			Scrum Meeting博客目录 [Gamma阶段]第五次Scrum Meeting 基本信息 名称 时间 地点 时长 第五次Scrum Meeting 19/05/31 大运村寝室6楼 30min ... 
- enable device: BAR 0 [mem 0x00000000-0x003fffff] not claimed
			/******************************************************************************* * enable device: BA ... 
