在我本地部署的rabbitmq,在我的服务器关闭的时候会自动关闭connection,而在外网服务器上的时候不会自动关闭connection,每次重新启动服务器就会创建新的connection,导致connection很多,需要我在服务器关闭的时候主动去关闭连接吗?
public void destroy(NutConfig conf) {
}
在destroy方法中关闭connection吗?
public Channel getChannel() throws Exception{
Connection connection = rabbitmq_cf.newConnection();
return connection.createChannel();
}
自己封装一个吧
来自美丽的 NutzCN