jboss7启动超时问题 JBAS015052

时间:2015-03-03 11:59:48   收藏:0   阅读:5233

        最近使用jboss7开发web系统,在开发环境中运行正常,但是发送到现场时启动报错,刚开始感觉很莫名其妙,后来现场发回jboss日志,发现报错 如下  JBAS015052: Did not receive a response to the deployment operation within the allowed timeout period [60 seconds]. Check the server configuration file and the server logs to find more about the status of the deployment. 大概看出是超时的问题。于是我查看了开发环境里的日志,基本上在60s内都加载完成,而现场日志显示加载远远超过60s。60s应该是默认的时间,所以解决问题就要将超时时间设置长一点。

        解决办法,修改standalone.xml 的配置

<subsystem xmlns="urn:jboss:domain:deployment-scanner:1.1">
     <deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000" />
</subsystem>

        添加 deployment-timeout="1000"

<subsystem xmlns="urn:jboss:domain:deployment-scanner:1.1">
     <deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000" deployment-timeout="1000"/>
</subsystem>


评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!