zoukankan      html  css  js  c++  java
  • [转]Dubbo admin在JDK1.8环境运行报Invalid property 'URIType' of bean class

    在虚拟机上部署dubbo-admin的时候报错:

    [java] view plain copy
     
     
     
     
    1. ERROR context.ContextLoader - Context initialization failed  
    2. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'uriBrokerService': Cannot create inner bean '(inner bean)' of type [com.alibaba.citrus.service.uribroker.impl.URIBrokerServiceImpl$URIBrokerInfo] while setting bean property 'brokers' with key [0]; nested excepti  
    3. on is org.springframework.beans.factory.BeanCreationException: Error creating bean with name '(inner bean)#25': Cannot create inner bean 'server' of type [com.alibaba.citrus.service.uribroker.uri.GenericURIBroker] while setting constructor argument; nested exception is org.springframework.beans.fact  
    4. ory.BeanCreationException: Error creating bean with name 'server': Error setting property values; nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'URIType' of bean class [com.alibaba.citrus.service.uribroker.uri.GenericURIBroker]: Bean property 'URIType'  
    5. is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?  
    6.         at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveInnerBean(BeanDefinitionValueResolver.java:230)  
    7.         at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:122)  
    8.         at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveManagedList(BeanDefinitionValueResolver.java:287)  
    [java] view plain copy
     
     
     
    1. ERROR context.ContextLoader - Context initialization failed  
    2. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'uriBrokerService': Cannot create inner bean '(inner bean)' of type [com.alibaba.citrus.service.uribroker.impl.URIBrokerServiceImpl$URIBrokerInfo] while setting bean property 'brokers' with key [0]; nested excepti  
    3. on is org.springframework.beans.factory.BeanCreationException: Error creating bean with name '(inner bean)#25': Cannot create inner bean 'server' of type [com.alibaba.citrus.service.uribroker.uri.GenericURIBroker] while setting constructor argument; nested exception is org.springframework.beans.fact  
    4. ory.BeanCreationException: Error creating bean with name 'server': Error setting property values; nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'URIType' of bean class [com.alibaba.citrus.service.uribroker.uri.GenericURIBroker]: Bean property 'URIType'  
    5. is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?  
    6.         at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveInnerBean(BeanDefinitionValueResolver.java:230)  
    7.         at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:122)  
    8.         at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveManagedList(BeanDefinitionValueResolver.java:287)  

    查看源码如下:

    set方法不很标准,导致高版本jdk(jre)不能支持,导致报错。

    解决方法:

    1、更换服务器jdk版本。

    2、修改dubbo-admin tomcat默认jdk版本。

    3、修改dubbo-admin项目依赖(dependency)从新打包。

    主要说下第三种方法:

    https://github.com/alibaba/dubbo.Git

    下载导入源码后,修改如下配置:

    1、webx的依赖改为3.1.6版

    [html] view plain copy
     
     
     
     
    1. <dependency>  
    2.     <groupId>com.alibaba.citrus</groupId>  
    3.     <artifactId>citrus-webx-all</artifactId>  
    4.     <version>3.1.6</version>  
    5. </dependency>  
    [html] view plain copy
     
     
     
    1. <dependency>  
    2.     <groupId>com.alibaba.citrus</groupId>  
    3.     <artifactId>citrus-webx-all</artifactId>  
    4.     <version>3.1.6</version>  
    5. </dependency>  

    2、添加velocity的依赖,我用了1.7

    [html] view plain copy
     
     
     
     
    1. <dependency>  
    2.     <groupId>org.apache.velocity</groupId>  
    3.     <artifactId>velocity</artifactId>  
    4.     <version>1.7</version>  
    5. </dependency>  
     
    [html] view plain copy
     
     
     
    1. <dependency>  
    2.     <groupId>org.apache.velocity</groupId>  
    3.     <artifactId>velocity</artifactId>  
    4.     <version>1.7</version>  
    5. </dependency>  

    3、对依赖项dubbo添加exclusion,避免引入旧spring

    [html] view plain copy
     
     
     
     
    1. <dependency>  
    2.     <groupId>com.alibaba</groupId>  
    3.     <artifactId>dubbo</artifactId>  
    4.     <version>${project.parent.version}</version>  
    5.     <exclusions>  
    6.         <exclusion>  
    7.             <groupId>org.springframework</groupId>  
    8.             <artifactId>spring</artifactId>  
    9.         </exclusion>  
    10.     </exclusions>  
    11. </dependency>  
    [html] view plain copy
     
     
     
    1. <dependency>  
    2.     <groupId>com.alibaba</groupId>  
    3.     <artifactId>dubbo</artifactId>  
    4.     <version>${project.parent.version}</version>  
    5.     <exclusions>  
    6.         <exclusion>  
    7.             <groupId>org.springframework</groupId>  
    8.             <artifactId>spring</artifactId>  
    9.         </exclusion>  
    10.     </exclusions>  
    11. </dependency>  

    4、webx已有spring 3以上的依赖,因此注释掉dubbo-admin里面的spring依赖

    [html] view plain copy
     
     
     
     
    1. <!--<dependency>-->  
    2.     <!--<groupId>org.springframework</groupId>-->  
    3.     <!--<artifactId>spring</artifactId>-->  
    4. <!--</dependency>-->  
    [html] view plain copy
     
     
     
    1. <!--<dependency>-->  
    2.     <!--<groupId>org.springframework</groupId>-->  
    3.     <!--<artifactId>spring</artifactId>-->  
    4. <!--</dependency>-->  

    逐个项目编译,重新打包,部署。

    成功!

  • 相关阅读:
    http statusCode(状态码)
    MVC 获取控制器名称和Action名称(转载)
    Spark2.0机器学习系列之10: 聚类(高斯混合模型 GMM)
    机器学习算法(优化)之二:期望最大化(EM)算法
    Spark2.0机器学习系列之9: 聚类(k-means,Bisecting k-means,Streaming k-means)
    Spark2.0 特征提取、转换、选择之二:特征选择、文本处理,以中文自然语言处理(情感分类)为例
    Spark2.0 特征提取、转换、选择之一:数据规范化,String-Index、离散-连续特征相互转换
    SVM实现多分类的三种方案
    机器学习算法(优化)之一:梯度下降算法、随机梯度下降(应用于线性回归、Logistic回归等等)
    Spark2.0机器学习系列之8:多类分类问题(方法归总和分类结果评估)
  • 原文地址:https://www.cnblogs.com/sidesky/p/12627425.html
Copyright © 2011-2022 走看看