WebLogic Server StuckThreadMaxTime value is exceeded during configuration
摘要:If you are configuring WebLogic Server 9.2 MP2 or 10 using the Configurator and you take longer than 600 seconds to finish the configuration, the following error is returned to the terminal and WebLogic Server domain and server logs:<Error> <WebLogicServer> <BEA-000337> <[STUCK]
阅读全文
posted @
2012-02-15 16:02
七月逆流
阅读(334)
推荐(0) 编辑
使用Eclipse调试JDK源码
摘要:突然发现用eclipse调试时不能跟进jdk的类,search一下有人说下jdk的debug版本,但之前我一直用非debug版本也可以进入调试啊,也有人说下完整的src,但是我的是一些核心jdk类就无法调试。重新检查eclipse的配置,发现原因,原来install jre配置使用的是jre home是jre安装目录,更改到jdk目录,即可以如愿跟进jdk的核心类了。<路径:preferences-->java-->install jre>附录:1、JDK自带的src.zip里源代码并不完整,不能查看相关类的源文件(当然,喜欢的话可以反编译)。譬如,以sun.开头的包就
阅读全文
posted @
2012-02-15 10:36
七月逆流
阅读(1352)
推荐(0) 编辑
11 Things every Software Developer should be doing in 2012
摘要:Introduction2011 is winding down and 2012 is upon us. Have you set any goals for 2012 both professionally/personally? Regardless of the answer, I’m sure one or two of the items listed below can help. I usually don’t blog many opinion posts, due to the fact that I like to keep my blog technical. This
阅读全文
posted @
2012-02-07 12:21
七月逆流
阅读(195)
推荐(0) 编辑
通过代理访问WebService
摘要:参考片段(一)public String getService(String methodName, String xml) { try { String endpointURL = "http://219.136.207.188/mobtongbao/services/UmpsToGmccWS"; AxisProperties.setProperty("http.proxyHost", "10.243.184.17"); //代理IP AxisProperties.setProperty("htt...
阅读全文
posted @
2012-02-07 02:14
七月逆流
阅读(4951)
推荐(0) 编辑