当前位置: 首页 > 图文教程 > 服务器 > 服务器其他 > tomcat antiResourceLocking antiJARLocking 的作用和用法

服务器其他
注册用户就出现这个CDO.Message.1 错误 80040220
使用Jmail及Winwebmail发信时系统记录中的错误:502 Error: command ...
未能在 sysdatabases 中找到数据库 aa1xxxx 所对应的条目。没有找到具有该名称的条目
使用了星外的Ipsec如何允许SQL 2000远程连接?
将自己做好的数据库导入到服务器中
当邮箱服务器与主控网站在同一台服务器时,邮箱虚拟主机请用8888端口
系统参数中,设置“由平台收集后备案”是什么意思?
为php增加GD库及sql 2000的支持
将php默认的FastCGI模式改成ISAPI模式
Perl(CGI)默认的MSI安装包安装失败的处理方式
修复mysql数据库
邮箱软件已安装好,但邮箱收不到信的原因
无效的过程调用或参数: Mid /inc-freehost-function/FreeHostFunction.asp 错误的原因
我现在 E盘满了 怎么才可以在开空间开到 F盘呢?
关于代理上传图片到主控网站的说明
Windows 2000的系统,防止木马写入指定目录
一些cgi论坛所需要的影射
如果SQL2000装在用户数据所在的盘,请检查SQL运行用户的磁盘配额是否足够
如何允许用户自己选择电信或网通?
SQL错误:相关的信息为:用户 sa 登录失败。原因: 未与信任 SQL Server 连接相关联。

服务器其他 中的 tomcat antiResourceLocking antiJARLocking 的作用和用法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-04   浏览: 218 ::
收藏到网摘: n/a

tomcat 里 antiResourceLocking 和 antiJARLocking 的作用和用法 我们先来看看这个 antiResourceLocking 到底是干什么的!
If true, Tomcat will prevent any file locking. This will significantly impact startup time of applications, but allows full webapp hot deploy and undeploy on platforms or configurations where file locking can occur. If not specified, the default value is false.
Please note that setting this to true has some side effects, including the disabling of JSP reloading in a running server: see Bugzilla 37668.
Please note that setting this flag to true in applications that are outside the appBase for the Host (the webapps directory by default) will cause the application to be deleted on Tomcat shutdown. You probably don't want to do this, so think twice before setting antiResourceLocking=true on a webapp that's outside the appBase for its Host.
我大致翻译一下:
如果这个参数为true,那么将组织任何文件锁。这将明显的影响应用的启动时间,但允许webapps,可能发生锁的平台和配置下,支持完整的热部署和热卸载。如果不配置,默认值是false;
如果设置为true,有一些副作用,包括屏蔽了JSP文件在运行服务器上的重新加载。
如果设置为true,且部署在Host的AppBase目录外面(默认是webapps),在Tomcat关闭的时候将导致应用被删除。
最主要的就翻译到这里了。实际上,如果为false,因为存在锁,在你重新发布的时候,可能出现部分代码无法更新。因为原始文件可能因为被锁住了,不能删除。
当然,如果为false,那么部署的目录就是和包名相同了。如果是false,则会每次都放到一个临时目录下面,一个temp目录。这也是这个配置引发的一个副作用。
另外的一个类似的配置 antiJARLocking 是防止jar类库被锁定而无法删除这个作用的。