我们调用另一个服务,返回的是xml,使用XStream转化为对象。最近发现这个服务比较卡。
修改之前的代码是这样的:
image.png
- 原因分析:
在博文http://blog.sina.com.cn/s/blog_6c02f51e0100wojj.html看到,每个请求都会new一个XStream对象,然后xstream内部又会new一个CompositeClassLoader,并且Class.forName调用该loader,minor gc不会回收这种class loader对象,那就会导致heap被占满并full gc了。
That’s because Class.forName() will keep a reference to your class loader in the SystemDictionary (for being an initiating loader of the class, in your example “java.lang.String”), whereas ClassLoader.loadClass() won’t.
-
代码优化:
image.png
网友评论