WebLogic 지원 추가
- wlthint3client.jar 라이브러리 추가 - SingleQueueMonitoringForWebLogicTest 테스트 클래스 추가 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Binary file not shown.
+22
@@ -0,0 +1,22 @@
|
|||||||
|
package com.eactive.eai.rms.client.service.weblogic;
|
||||||
|
|
||||||
|
import java.util.Properties;
|
||||||
|
|
||||||
|
class SingleQueueMonitoringForWebLogicTest {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param args
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public static void main(String[] args)throws Exception{
|
||||||
|
SingleQueueMonitoringForWebLogic monitoring = new SingleQueueMonitoringForWebLogic();
|
||||||
|
Properties properties = new Properties();
|
||||||
|
properties.put("LOCAL_MBEAN_SERVER_IP", "192.168.240.175");
|
||||||
|
properties.put("LOCAL_MBEAN_SERVER_PORT", "8001");
|
||||||
|
properties.put("LOCAL_MBEAN_SERVER_ID", "wasadm");
|
||||||
|
properties.put("LOCAL_MBEAN_SERVER_PASSWORD", "!wasadm12");
|
||||||
|
|
||||||
|
monitoring.init(properties);
|
||||||
|
System.out.println(monitoring.getState("agwSvr11"));
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user