希望能帮到你,祝你生活愉快!
我用的仪器是ARL3460光谱仪,使用时间较长,现在激发台孔已经不圆了,不知道这样会不会对分析有影响?
第1题:
我已经用JMS实现了对weblogic的server Name,Listen Port,webApp的名称、domain名称。现在想实现对weblogic的执行线程(executeQueue)、集群(cluster)、堆(heap)等,不知道应该怎么实现?
能,用jmx ,google一下这方面知识,由于从weblogic8升级到weblogic9发生了比较大的变化,以前对于weblogic8比较熟悉的人,也许到了weblogic9就不一定熟悉了,还需要了解才行,特别是监控方面差别比较大,由于9采用的jdk版本是1.5,监控8实现的java方式就不能用于9了。
就目前我得测试结论是:java实现weblogic的自定义监控对于9和10都是适用的,但是对于11却没有测试,还不知道方式是否相同,实际上从文档里面也可以看出,8系列是采用的许多管理的MBean接口在9中已经不推荐使用,标明是过时的了。
我这次通过java编程来实现weblogic9的自定义监控就发现,很多地方完全地不同了。
从界面上来看,已经完全不同于8,命令行监控方式也有一些大的变化。
这是我取得监控接口封装的类:
package lht.monitor.weblogic.main9;
import java.io.IOException;
import java.net.MalformedURLException;
import java.util.Hashtable;
import javax.management.MBeanServerConnection;
import javax.management.MalformedObjectNameException;
import javax.management.ObjectName;
import javax.management.remote.JMXConnector;
import javax.management.remote.JMXConnectorFactory;
import javax.management.remote.JMXServiceURL;
import javax.naming.Context;
public class SetEnvironment {
protected static MBeanServerConnection connection;
private static JMXConnector connector;
private static final ObjectName service;
// Initializing the object name for DomainRuntimeServiceMBean
// so it can be used throughout the class.
static {
try {
service = new ObjectName( "com.bea:Name=DomainRuntimeService,Type=weblogic.management.mbeanservers.domainruntime.DomainRuntimeServiceMBean");
}catch (MalformedObjectNameException e) {
throw new AssertionError(e.getMessage());
}
}
/*
* Initialize connection to the Domain Runtime MBean Server
*/
public static void initConnection(String hostname, String portString,String username, String password) throws IOException, MalformedURLException {
String protocol = "t3";
Integer portInteger = Integer.valueOf(portString);
int port = portInteger.intValue();
String jndiroot = "/jndi/";
String mserver = "weblogic.management.mbeanservers.domainruntime";
JMXServiceURL serviceURL = new JMXServiceURL(protocol, hostname, port, jndiroot + mserver);
Hashtable hash = new Hashtable();
hash.put(Context.SECURITY_PRINCIPAL, username);
hash.put(Context.SECURITY_CREDENTIALS, password);
hash.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,"weblogic.management.remote");
connector = JMXConnectorFactory.connect(serviceURL,hash);
connection = connector.getMBeanServerConnection();
}
/*
* This MBean is the root of the runtime MBean hierarchy, and
* each server in the domain hosts its own instance.
*/
public static ObjectName[] getServerRuntimes(String servername,String hostname, String portString,String username, String password) throws Exception{
ObjectName[] bj = (ObjectName[])connection.getAttribute(service,servername);
return obj;
}
}
第2题:
ARL3460直读光谱仪已经使用5年,现在真空泵漏油严重,想更换一台真空泵,购买原厂家的太贵,如果购买国产的真空泵应选用哪种型号,哪个厂家生产的?有知道这方面的专家请帮助我,给出意见和建议。
第3题:
患者女,2岁孩子的母亲,正准备做乳房活检,她哭着说“如果我切除了乳房, 我的丈夫就不再喜欢我了”。下列哪项是护士最好的反应
A.你担心你和丈夫的关系可能会改变吗
B.还不知道你会不会切除乳房,现在只只是活检
C.你应该关注你的孩子,他很小很需要你
D.你为什么不等到切了乳房后再看丈夫什么反应
E.别担心了,现在担心也没什么用
第4题:
ARL3460光谱仪通道表中BG是什么意思?
第5题:
ARL3460直读光谱仪搬迁时要注意什么?
第6题:
ARL3460光谱仪在打标样时S成分偏低,原值0.021,打出来是0.012,或0.009,做完标准化还是这样,是什么原因?
第7题:
ARL3460直读光谱仪高能预火花光源组成原理是什么?
第8题:
个人起诉公司,但是这家公司现在已经变更法人了,我只知道原来法人的姓名和电话,不知道具体住址,怎么办?我是应该起诉个人还是公司呢?
希望能帮到你,祝你生活愉快!
第9题:
ARL3460光电直读光谱仪的开关操作有哪些注意事项?
第10题:
家在分析泥土中的汞时是否要把泥土样品烘干?我用105度烘干不知道会不会有影响?