jboss7启动超时问题 JBAS015052

        最近使用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>


你可能感兴趣的:(jboss7)