欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

tomcat中reloadable作用 有大用 有大大用

1、在tomcat的配置文件server.xml中:


  1. <Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true">
  2. <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" pattern="%h %l %u %t "%r" %s %b" prefix="localhost_access_log." suffix=".txt"/>
  3. <Context docBase="F:\LAMP\Tomcat7.0\me-webapps\SZU_MC" path="/SZU_MC" reloadable="false" source="org.eclipse.jst.jee.server:SZU_MC"/>
  4. </Host>




2、上面的


reloadable="false"


的作用为:


reloadable:如果这个属性设为true,tomcat服务器在运行状态下会监视在WEB-INF/classes和WEB-INF/lib目录下class文件的改动,如果监测到有class文件被更新的,服务器会自动重新加载Web应用。
在开发阶段将reloadable属性设为true,有助于调试servlet和其它的class文件,但这样用加重服务器运行负荷,建议在Web应用的生产阶段将reloadable设为false。

3、更多的了解:

http://my.oschina.net/u/1433006/blog/664398?p={{currentPage-1}}

http://www.blogjava.net/wangxinsh55/archive/2011/05/31/351449.html

来自 https://blog.csdn.net/tzh476/article/details/52337414


普通分类: