标签:
In wildfly,In the process of loading
WARN [org.jboss.as.txn] (ServerService Thread Pool -- 46) JBAS010153: Node identifier property is set to the default value. Please make sure it is unique.
Modify the standalone.xml,Add child nodes --node-identifier.
<subsystem xmlns="urn:jboss:domain:transactions:2.0">
<core-environment node-identifier="${jboss.node.name}">
<process-id>
<uuid/>
</process-id>
</core-environment>
<recovery-environment socket-binding="txn-recovery-environment" status-socket-binding="txn-status-manager"/>
</subsystem>
Solve Wildfly Transactions Warn
标签:
原文地址:http://my.oschina.net/zhaoqian/blog/383405