tomcat下web.xml文件修改后工程重启的原因

$tomcat/conf/context.xml文件中的配置,监听了WEB-INF/web.xml文件

<?xml version=‘1.0‘ encoding=‘utf-8‘?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<!-- The contents of this file will be loaded for each web application -->
<Context>

    <!-- Default set of monitored resources. If one of these changes, the    -->
    <!-- web application will be reloaded.                                   -->
    <WatchedResource>WEB-INF/web.xml</WatchedResource>
    <WatchedResource>${catalina.base}/conf/web.xml</WatchedResource>

    <!-- Uncomment this to disable session persistence across Tomcat restarts -->
    <!--
    <Manager pathname="" />
    -->

    <!-- Uncomment this to enable Comet connection tacking (provides events
         on session expiration as well as webapp lifecycle) -->
    <!--
    <Valve className="org.apache.catalina.valves.CometConnectionManagerValve" />
    -->
</Context>

时间: 2024-10-12 20:28:05

tomcat下web.xml文件修改后工程重启的原因的相关文章

Mac下的hosts文件修改后导致xcode卡在&quot;Attaching to ***&quot;

昨天想翻墙, 于是想通过修改hosts文件的方法, 从网上找了很多IP列表直接替换了原来的hosts文件内容, 今天再次编译xcode时一直卡在"Attaching to ***"这个阶段, 重启xcode, 重新编译, 重启电脑, 都不行, 后来从Stack overflow上发现了问题所在, 我的hosts文件里的127.0.0.1 对应于 localhost这个映射也被我删掉了, 怎么把hosts文件复原呢, 看了一下目录/etc下面, 有个名叫hosts~orig的文件, 从名

LNMP 下 php.ini 文件修改后不生效

1.找到php.ini 本人的是在 /usr/local/php/etc/下 2.修改需要的值 3.重启php-fpm service php-fpm restart 4.重启服务器 service nginx restart 5.完成 原文地址:https://www.cnblogs.com/leilei-1/p/8763285.html

IntelliJ IDEA 2017.3-----idea创建java的web项目,详细配置(没有web.xml文件问题)

主要步骤有: 创建jave web工程创建WBE-INF目录创建classes和lib目录创建web.xml文件修改编译输出到classes目录指定jar文件到lib目录tomcat的部署,没有在这里写,前面文章有记录 1.创建javaweb项目,File-->New-->Project: 2. 选择web项目:Java Enterprise-->Web Application 3.创建工程和目录地址: 4.最终得到的项目结构: 现在基本的web项目是创建了,但是目录结构还有很多需要修改

Java web 项目读取src或者tomcat下class目录下的xml文件或者properties文件

//生成一个文件对象: File file = new File(getClass().getClassLoader().getResource("test.xml").getPath()); //直接得到一个输入流: InputStream in = getClass().getClassLoader().getResourceAsStream("test.xml"); //在当前线程获取--这个方法不大稳定 //String path = Thread.curr

Eclipse 创建web工程后没有web.xml文件

问题: 今天换了台机器,重新安装了JDK, Eclipse. 创建了一个web工程,奇怪的发现创建好的工程没有web.xml文件,再试了几次依然是同样的结果,奇怪,web.xml文件哪里去了,怎么破? 解决方法: 不是大问题,没有web.xml 是因为在创建工程的时候没有选择web.xml所致,在创建工程时不要选择finish直接完成,建议选择next,在第三步勾选Generate web.xml development descriptor.

关于Java Web工程中web.xml文件

提及Java Web工程中web.xml文件无人不知,无人不识,呵呵呵:系统首页.servlet.filter.listener和设置session过期时限,张口就来,可是你见过该文件中的error-page标签吗?下面直接以例子的形式说明error-page标签的使用: 一个servlet文件: package com.ghj.packageofservlet; import java.io.IOException; import javax.servlet.ServletException;

如何通过配置tomcat或是web.xml让ie直接下载文件

web.xml(tomcat\conf\web.xml)中配置了 <mime-mapping>   <extension>txt</extension>   <mime-type>application/txt</mime-type> </mime-mapping> 原文地址:https://www.cnblogs.com/xiaoleiel/p/11160757.html

web.xml文件中的7个错误的安全配置

关于Java的web.xml文件中配置认证和授权有大 量 的 文章.本文不再去重新讲解如何配置角色.保护web资源和设置不同类型的认证,让我们来看看web.xml文件中的一些常见的安全错误配置. (1) 自定义的错误页面没有配置 默认情况下,Java Web应用在发生错误时会将详细的错误信息展示出来,这将暴露服务器版本和详细的堆栈信息,在有些情况下,甚至会显示Java代码的代码片段.这些信息对为他们的病毒需找更多信息的黑客来说是一种恩惠.幸运的是,通过配置web.xml文件来展示自定义的错误页面

web.xml文件的作用及基本配置

Java的web工程中的web.xml文件有什么作用呢?它是每个web工程都必须的吗? 一个web中完全可以没有web.xml文件,也就是说,web.xml文件并不是web工程必须的. 那什么时候需要,什么时候可以不需要呢? 要想回答上面的问题,得先了解web.xml文件是用来干什么的.web.xml文件是用来配置:欢迎页.servlet.filter等的.当你的web工程没用到这些时,你可以不用web.xml文件来配置你的web工程. 那么web.xml能做的所有事情都有那些? 其实,web.