• dubbo-admin在jdk1.8下报错问题(已解决)


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

    ERROR context.ContextLoader - Context initialization failed
    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
    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
    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'
    is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?
            at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveInnerBean(BeanDefinitionValueResolver.java:230)
            at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:122)
            at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveManagedList(BeanDefinitionValueResolver.java:287)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    查看源码如下:

    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版

    
        com.alibaba.citrus
        citrus-webx-all
        3.1.6
    
    
    • 1
    • 2
    • 3
    • 4
    • 5

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

    
        org.apache.velocity
        velocity
        1.7
    
    
    • 1
    • 2
    • 3
    • 4
    • 5

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

    
        com.alibaba
        dubbo
        ${project.parent.version}
        
            
                org.springframework
                spring
            
        
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

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

    
        
        
    
    
    • 1
    • 2
    • 3
    • 4

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

    成功!

  • 相关阅读:
    linux添加一条到中间路由器的路由
    猿创征文 | vue设计一个高扩展性能的路由和实现菜单与路由相结合
    shell实践:添加删除组和向组中添加删除成员
    sql 日期转为每周的第一天 周维度
    萝卜爆肝Python自学学习路线
    2023.10.01-winxpsp3绿色安装jdk1.8
    java面试题2019_java面试题及答案_java面试题库
    grpc-java源码环境编译
    政企组织为什么更需要私有化的IM即时通讯平台?
    27_Scala功能函数
  • 原文地址:https://blog.csdn.net/m0_67401228/article/details/126327852