JBoss5 啓動報錯java.lang.IllegalArgumentException: ...

  1. 10:18:01,906 ERROR [AbstractKernelController] Error installing to Instantiated: name=AttachmentStore state=Described  
  2. java.lang.IllegalArgumentException: Wrong arguments. new for target java.lang.reflect.Constructor expected=[java.net.URI] actual=[java.io.File]  
  3.     at org.jboss.reflect.plugins.introspection.ReflectionUtils.handleErrors(ReflectionUtils.java:395)  
  4.     at org.jboss.reflect.plugins.introspection.ReflectionUtils.newInstance(ReflectionUtils.java:153)  
  5.     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

  1. 肯定正在使用的要發佈的服務器(server 目錄下使用到的服務目錄,如 all, default, minial, ...,這裏我使用的是 default)。
  2. 進到相似目錄 server/default/conf/bootstrap,打開文件 profile.xml
  3. 找到:
    Xml代碼 
    1. <bean name="AttachmentStore" class="org.jboss.system.server.profileservice.repository.AbstractAttachmentStore">  
    2.  <constructor><parameter><inject bean="BootstrapProfileFactory" property="attachmentStoreRoot" /></parameter></constructor>  
     
  4. 修改成:
    Xml代碼 
    1. <bean name="AttachmentStore" class="org.jboss.system.server.profileservice.repository.AbstractAttachmentStore">  
    2.  <constructor><parameter class="java.io.File"><inject bean="BootstrapProfileFactory" property="attachmentStoreRoot" /></parameter></constructor>  
     
  5. 重啓 JBoss,問題解決
轉自http://mycream.iteye.com/blog/632166 謝謝這位高手!
相關文章
相關標籤/搜索