我很难理解代码中可能存在的内存泄漏。我有一个简单的Web服务,它接收XML格式的消息并将它们写入数据库。我注意到在处理了大约500K消息后,应用程序因内存不足而死机。在陡峭的学习曲线之后,我设法分析正在运行的应用程序,并很快发现每次调用服务时堆上都会保存一个Web服务实现对象。为了减少我的代码成为原因的可能性,我修改了实现,以便在无所事事后返回。然而,堆继续增长。我的环境是Glassfish 3,CXF 2.4.2和Eclipse(动态Web项目)。我已经在下面列出了服务和实现类。试图更清楚一点 - 在处理500,000条消息后,堆上有500,000个HL7ServiceImpl。
我真的很茫然,所以任何帮助都会受到赞赏。
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
@WebService(name = "HL7Service", targetNamespace = "http://ws.foo.bar.com/")
public interface HL7Service {
@WebMethod(operationName = "submit", action = "urn:Submit")
public void submit(@WebParam(name = "msg") String msg);
}
import javax.jws.WebService;
@WebService(targetNamespace = "http://ws.foo.bar.com/", endpointInterface = "com.bar.foo.ws.HL7Service", portName = "HL7ServiceImplPort", serviceName = "HL7ServiceImplService")
public class HL7ServiceImpl implements HL7Service {
public void submit (String msg) {
// if (msg == null)
// return ("NAK");
// else
// EventQueue.getInstance().submit(msg);
//
// return "ACK";
if (msg != null) { // temp
// DO nothing
}
}
}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
<jaxws:endpoint id="hl7service"
implementor="com.bar.foo.ws.HL7ServiceImpl" address="/hl7service">
<jaxws:features>
<bean class="org.apache.cxf.feature.LoggingFeature" />
</jaxws:features>
</jaxws:endpoint>
</beans>
答案 0 :(得分:0)
好的,以防其他人发现这个问题。这个问题似乎与Glassfish的本地Metro实施和CXF之间的冲突有关。从CXF迁移到Metro解决了这个问题。