- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
antiJARLocking
属性是什么意思?当我把它变成 true/false 有什么意义?
我在 web-application 的 context.xml
文件中看到了这个属性:
<?xml version="1.0" encoding="UTF-8"?>
<Context antiJARLocking="true" path="/poll">
<Resource name="jdbc/PollDatasource" auth="Container"
type="javax.sql.DataSource"
// etc etc
</context>
最佳答案
来自 Tomcat 7.0 documentation for Context Configuration :
"antiJARLocking - If true, the Tomcat classloader will take extra measures to avoid JAR file locking when resources are accessed inside JARs through URLs. This will impact startup time of applications, but could prove to be useful on platforms or configurations where file locking can occur. If not specified, the default value is false."
(他们试图解决的问题......我认为......是锁定的 JAR 文件会阻止热重新部署等工作。)
阅读文档了解更多信息。
antiJARLocking
属性被 antiResourceLocking
替换Tomcat 8 及更高版本中的属性。文档提到了设置此属性的一些值得注意的副作用。
另见:
关于java - 什么是 antiJARLocking 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11607009/
我在 Tomcat7 服务器上运行网络应用程序,但无法取消部署它们。 Windows 似乎锁定了应用程序文件夹中的特定 JAR 文件。我发现有一个名为“antiJARLocking”的上下文属性,我可
antiJARLocking 属性是什么意思?当我把它变成 true/false 有什么意义? 我在 web-application 的 context.xml 文件中看到了这个属性: 最佳答
我们先来看看这个 antiResourceLocking 到底是干什么的! If true, Tomcat will prevent any file locking. This will sig
我的 context.xml 文件: 我怎样才能摆脱这个警告?我的项目在 Netbeans 和 Tomcat 8.0.9 上运行:将属性“antiJARLocking”设置为“true”未找到匹
我正在开发一个项目,我们将使用 Tomcat 6.0.20 进行开发和生产。 我遇到了一些与热部署相关的问题,需要在 server.xml 中将 Context.antiResourceLocking
我是一名优秀的程序员,十分优秀!