「Java開発」「JBAS015052: Did not receive a response to the deployment operation 」解決方法

エラーメッセージ:
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.

解決方法

1.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>

2.「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>

Java

Posted by arkgame