我们如何在远程服务器上清除ehcache
?
我的应用程序在登台环境(主机111.22.3.44
和端口17000
)中运行,我想编写一个可以连接到给定host:port
的实用程序方法并清除{{1我的应用程序。该实用程序应该适用于Windows和Linux。
我使用ehcache
实用程序来刷新在stage-server中创建的JConsole.exe
的缓存,但是我需要以编程方式执行它。
答案 0 :(得分:5)
Hurrey ...... :)我得到了在远程环境中清除ehcache
的解决方案。在这里,我编写了一个Java实用程序方法,它将清除由主机名和端口指定的给定远程计算机的ehcache
。
public void flushEhcache() throws IOException, NamingException, MalformedObjectNameException, NullPointerException, AttributeNotFoundException, InstanceNotFoundException, MBeanException, ReflectionException {
String host = "111.22.3.44";
String port = "16000";
JMXServiceURL url = new JMXServiceURL("service:jmx:rmi:///jndi/rmi://"
+ host + ":" + port + "/jmxrmi");
JMXConnector jmxc = JMXConnectorFactory.connect(url, null);
MBeanServerConnection mbsc = jmxc.getMBeanServerConnection();
ObjectName beanName = new ObjectName("net.sf.ehcache:type=CacheManager,name=Your Application Name Here");
mbsc.invoke(beanName, "clearAll", new Object[0], new String[0]);
System.out.println("Flushed out ehcache succesfully");
}