-1

我的应用程序中存在类加载问题。我们正在使用自定义类加载器,并且所有内容都正确关闭,但是动态类com.sun.proxy.* and org.springframework.core.$Proxy

我已经尝试了很多东西,包括堆和内存直方图分析,但我认为我需要一些方法来跟踪代理生成。我需要检测:

  1. 哪些对象正在创建代理
  2. 创建的代理名称

是否有任何库/代码片段?我知道我可以在技术上使用 bytebuddy,但不想重新发明轮子

4

1 回答 1

0

Instead of using a Java agent, you should log the class loading via the -verbose:class flag and process this output.

于 2018-08-09T07:09:27.500 回答