运行JBoss 5.1.0 GA时出现Error installing to Instantiated:name=AttachmentStore state=Described错误的解决办法...

第一次开JBoss服务器:有些时候会遇到这种情况:把以下的文字替换即可

进到类似目录 server/default/conf/bootstrap,打开文件 profile.xml找到: Xml代码

  name="AttachmentStore" class="org.jboss.system.server.profileservice.repository.AbstractAttachmentStore">    bean="BootstrapProfileFactory" property="attachmentStoreRoot" /> 

修改为:

 name="AttachmentStore" class="org.jboss.system.server.profileservice.repository.AbstractAttachmentStore">    class="java.io.File"> bean="BootstrapProfileFactory" property="attachmentStoreRoot" />  

 重启 JBoss,问题解决

你可能感兴趣的:(运行JBoss 5.1.0 GA时出现Error installing to Instantiated:name=AttachmentStore state=Described错误的解决办法...)