第一次開JBoss伺服器:有些時候會遇到這種情況:把以下的文字替換即可
進到類似目錄 server/default/conf/bootstrap,開啟檔案 profile.xml找到: Xml程式碼
<bean name="AttachmentStore" class="org.jboss.system.server.profileservice.repository.AbstractAttachmentStore"> <constructor><parameter><inject bean="BootstrapProfileFactory" property="attachmentStoreRoot" /></parameter></constructor>
修改為:
<bean name="AttachmentStore" class="org.jboss.system.server.profileservice.repository.AbstractAttachmentStore"> <constructor><parameter class="java.io.File"><inject bean="BootstrapProfileFactory" property="attachmentStoreRoot" /></parameter></constructor>
重啟 JBoss,問題解決