IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> com.baidu.jprotobuf 使用远程类编码和解码 -> 正文阅读

[Java知识库]com.baidu.jprotobuf 使用远程类编码和解码

背景

因业务需要,我们某个业务需要从远程拿到一批二进制数据,然后将这批数据转为java对象进行处理
数据是通过jprotobuf 将java对象编码后得到的
本地没有这个编码、解码的规则,需要从远程拿取class文件,然后在根据动态加载这个class文件,再根据这个class文件将数据流转为可用的java对象

碰到的问题

在 执行 ProtobufProxy.create(schoolClass); 的时候报错

代码:

   public void protobufProxyTest2() throws Exception {
        File file1 =  new File("D:\\code\\untitled\\class");
        URLClassLoader classloader = (URLClassLoader) ClassLoader.getSystemClassLoader();
        Method add = URLClassLoader.class.getDeclaredMethod("addURL", new Class[] { URL.class });
        add.setAccessible(true);
        add.invoke(classloader, new Object[] { file1.toURI().toURL() });

        Class<?> schoolClass = classloader.loadClass("School");
        Codec schoolCodec = ProtobufProxy.create(schoolClass);
    }

报错:

java.lang.IllegalStateException: Compilation failed. class: School$$JProtoBufClass, diagnostics: [School$$JProtoBufClass.java:18: 警告: Can't initialize javac processor due to (most likely) a class loader problem: java.lang.NoClassDefFoundError: com/sun/tools/javac/processing/JavacProcessingEnvironment
public class School$$JProtoBufClass implements com.baidu.bjf.remoting.protobuf.Codec<School>{
       ^
  	//此处删除了很多栈xinxi
  	at com.intellij.rt.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:35)
  	at com.intellij.rt.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:235)
, School$$JProtoBufClass.java:18: 错误: 找不到符号
public class School$$JProtoBufClass implements com.baidu.bjf.remoting.protobuf.Codec<School>{
                                                                                     ^
  符号:School, School$$JProtoBufClass.java:21: 错误: 找不到符号
    public byte[] encode(School t) throws IOException {
                         ^
  符号:School
  位置:School$$JProtoBufClass, School$$JProtoBufClass.java:29: 错误: 找不到符号
    public School decode(byte[] bb) throws IOException {
           ^
  符号:School
  位置:School$$JProtoBufClass, School$$JProtoBufClass.java:34: 错误: 找不到符号
    public int size(School t) throws IOException {
                    ^
  符号:School
  位置:School$$JProtoBufClass, School$$JProtoBufClass.java:61: 错误: 找不到符号
    public void doWriteTo(School t, CodedOutputStream output)
                          ^
  符号:School
  位置:School$$JProtoBufClass, School$$JProtoBufClass.java:90: 错误: 找不到符号
    public void writeTo(School t, CodedOutputStream output)
                        ^
  符号:School
  位置:School$$JProtoBufClass, School$$JProtoBufClass.java:95: 错误: 找不到符号
public School readFrom(CodedInputStream input) throws IOException {
           ^
  符号:School
  位置:School$$JProtoBufClass]

	at com.baidu.bjf.remoting.protobuf.utils.compiler.JdkCompiler.doCompile(JdkCompiler.java:202)
	at com.baidu.bjf.remoting.protobuf.utils.compiler.AbstractCompiler.compile(AbstractCompiler.java:43)
	at com.baidu.bjf.remoting.protobuf.ProtobufProxy.doCreate(ProtobufProxy.java:395)
	at com.baidu.bjf.remoting.protobuf.ProtobufProxy.create(ProtobufProxy.java:297)
	at com.baidu.bjf.remoting.protobuf.ProtobufProxy.create(ProtobufProxy.java:262)
	at com.baidu.bjf.remoting.protobuf.ProtobufProxy.create(ProtobufProxy.java:234)
	at com.baidu.bjf.remoting.protobuf.ProtobufProxy.create(ProtobufProxy.java:193)
	at Test2.protobufProxyTest2(Test2.java:71)


追了一波源码,发现调了JavaCompiler进行编译class文件(可以理解为执行javac命令)

位置: JdkCompiler-146行

在这里插入图片描述

解决方案 (不想看debug过程直接点这里)

研究了一番,猜测是因为项目启动时没指定此类所在目录,于是在项目启动时执行下面的方法

addClassPath为下载的class文件所在目录

  public static void putClasspath(String addClassPath){
        String property = System.getProperty("java.class.path");
        System.setProperty("java.class.path", property +";"+addClassPath+";");
        System.out.println(System.getProperty("java.class.path"));
    }

完美解决!!

测试代码:

@Test
    public void protobufProxyTest() throws Exception {
        // 下载类的目录
        putClasspath("D:\\code\\untitled\\class");
        File file1 =  new File("D:\\code\\untitled\\class");
        //初始化URLClassLoader 用来动态加载下载下来的类
        URLClassLoader classloader = (URLClassLoader) ClassLoader.getSystemClassLoader();
        Method add = URLClassLoader.class.getDeclaredMethod("addURL", new Class[] { URL.class });
        add.setAccessible(true);
        add.invoke(classloader, new Object[] { file1.toURI().toURL() });


        School2 school = new School2();
        school.setSchoolLocation("schoolLocation");
        school.setExtend(11111111L);
        //为了方便测试,直接创建和下载的类结构一致的类School2
        Codec<School2> tCodec = ProtobufProxy.create(School2.class);
        byte[] encode = tCodec.encode(school);
        School2 encode1 = tCodec.decode(encode);
        System.out.println(encode1);

		// 动态加载远程下载的类
        Class<?> schoolClass = classloader.loadClass("School");
        Codec schoolCodec = ProtobufProxy.create(schoolClass);
        //解码为java对象
        Object decode = schoolCodec.decode(encode);
        System.out.println(decode);
    }


    public static void putClasspath(String addClassPath){
        String property = System.getProperty("java.class.path");
        System.setProperty("java.class.path", property +";"+addClassPath+";");
        System.out.println(System.getProperty("java.class.path"));
    }

输出日志
在这里插入图片描述
测试demo地址
https://gitee.com/ayezs/protobuf-proxy-test

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-04-09 18:09:53  更:2022-04-09 18:10:21 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 5:56:20-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码