如何减少TomcatDeployer扫描新工件的时间间隔?我正在使用 JBoss 4.2.3。
user321068
问问题
94 次
1 回答
1
由于您在 JBoss 中部署工件,因此您很可能会询问热部署扫描频率。
在 JBossAS 4.2 中,我相信您在server/$instance_name/conf/jboss-service.xml
文件中为DeploymentScanner
MBean 设置了热部署扫描频率:
<!-- this is in milli-seconds, so 60000 ms means 60 seconds which is scanning every minute in the deploy folder for changes in the deployed packages -->
<attribute name="ScanPeriod">60000</attribute>
<attribute name="ScanEnabled">true</attribute>
于 2012-05-10T16:45:48.483 回答