- 10:18:01,906 ERROR [AbstractKernelController] Error installing to Instantiated: name=AttachmentStore state=Described
- java.lang.IllegalArgumentException: Wrong arguments. new for target java.lang.reflect.Constructor expected=[java.net.URI] actual=[java.io.File]
- at org.jboss.reflect.plugins.introspection.ReflectionUtils.handleErrors(ReflectionUtils.java:395)
- at org.jboss.reflect.plugins.introspection.ReflectionUtils.newInstance(ReflectionUtils.java:153)
- at org.jboss.reflect.plugins.introspection.ReflectConstructorInfoImpl.newInstance(ReflectConstructorInfoImpl.java:106)
網上資源: java
JBoss 論壇:Problem installing 5.1GA on solaris SPARC bootstrap
JBoss bug:JBAS-6981 服務器
在 JBoss 的官方論壇上找到一篇解決方案,具體是: spa
- 肯定正在使用的要發佈的服務器(server 目錄下使用到的服務目錄,如 all, default, minial, ...,這裏我使用的是 default)。
- 進到相似目錄 server/default/conf/bootstrap,打開文件 profile.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,問題解決
轉自http://mycream.iteye.com/blog/632166 謝謝這位高手!