執行JBoss 5.1.0 GA時出現Error installing to Instantiated:name=AttachmentStore state=Described錯誤的解決辦法

Franson發表於2016-05-19

第一次開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,問題解決

相關文章