增强 WebSphere eXtreme Scale 的 xsadmin
2009-09-29 00:00:00 来源:WEB开发网清单 7. 新修改后的 main() 方法
/*
* Added !o.listOG to account for the condition of a user wanting to just see the
* list of grids and associated mapsets - who wants to specify the other options
* for a listing????
*/
if (!(o.showContainers || o.showHosts || o.showPrimaries || o.showUnAssigned) &&
!o.listOG && !o.catServer) {
CmdLineParser.printHelp();
// System.exit(-1);
return;
}
通过清单 7 中的更改,您现在可以在无需提供任何其他参数的情况下在命令行上传入 –catserv 参数。
接下来,您需要提供一些逻辑,以在此参数传入应用程序时采取相应的操作。清单 8 显示了您现在将要处理的 main() 方法(属于 OGAdmin)方法的区域。
清单 8. OGAdmin 的 main() 方法中的逻辑
/*
* code that responds to -l argument - prints out grids and mapsets defined!!
*/
if (o.listOG) {
printListOfOG(jmxProxy.getObjectGridNames());
return;
}
// Show containers
if (o.showContainers) {
printContainers(jmxProxy, o);
} else if (o.showPrimaries) {
printPrimaries(jmxProxy, o);
} else if (o.showUnAssigned) {
printUnassigned(jmxProxy, o);
} else if (o.showHosts) {
printHosts(jmxProxy, o);
} else {
//?
}
- ››WebSphere Application Server 7.0 XML Feature P...
- ››增强用户的体验愉悦性和专注度:保持用户的游戏体验...
- ››WebSphere 反向投资者: 解决 WebSphere Applicati...
- ››WebSphere sMash 的创新应用,第 2 部分: 借助包装...
- ››Websphere MQ v6集群的负载均衡新功能
- ››WebSphere Process Server V6.0.2 集群,第 2 部分...
- ››WebSphere Process Server V6.0.2 集群,第 1 部分...
- ››WebSphere MQ性能调优浅谈
- ››WebSphere配置资源库管理
- ››WebSphere中的SSL/TLS:用法、配置和性能
- ››websphere ejb远程/本地调用总结
- ››WebSphere Application Server对SIP的支持
更多精彩
赞助商链接