简单解决复杂的Oracle IAS问题

php中文网
发布: 2016-06-07 16:53:51
原创
1329人浏览过

笔者做了一个小的系统辅助功能,可以周期性访问某个URL、执行某个SQL语句 or 执行某个系统命令。执行SQL语句和系统命令比较简单,

笔者做了一个小的系统辅助功能,可以周期性访问某个url、执行某个sql语句 or 执行某个系统命令。
执行sql语句和系统命令比较简单,这里不再详述,主要说一下访问某个url。

实际上jdk自身已有工具类用于创建http请求,类名是:java.net.httpurlconnection,,但考虑到基础类通常比较粗糙,很多情况要自己考虑和处理,就转头去google了下,发现果然有开源的工具包可以使用,几个工具包中以httpclient较为常用,而且是apache的东东,于是决定采用httpclient。

从apache上down了包commons-httpclient-3.1.jar和commons-codec-1.3.jar两个包,后者是httpclient依赖的包。
帮助写的很好,即便是像我这样英文很烂,也能很快上手。

public boolean visiturl(string url) {
// commons httpclient 3.1
httpclient client = new httpclient();
httpmethod method = new getmethod(url);
// provide custom retry handler is necessary
method.getparams().setparameter(httpmethodparams.retry_handler, new defaulthttpmethodretryhandler(3, false));
boolean rs = false;
try {
// execute the method.
int statuscode = client.executemethod(method);
if (statuscode != httpstatus.sc_ok) {
logger.error("method failed: " + method.getstatusline());
}
else {
rs = true;
}
} catch (httpexception e) {
logger.error("fatal protocol violation: " + e.getmessage());
} catch (ioexception e) {
logger.error("fatal transport error: " + e.getmessage());
} finally {
// release the connection.
method.releaseconnection();
}
return rs;
}
本机tomcat下run一下,工作正常,随即丢到服务器(oracle ias环境)上测试,程序应该出乎意料的报了个错。
09/03/16 19:03:43 java.lang.noclassdeffounderror
09/03/16 19:03:43 at org.apache.commons.httpclient.httpmethodbase.writerequestline(httpmethodbase.java:2015)
09/03/16 19:03:43 at org.apache.commons.httpclient.httpmethodbase.writerequest(httpmethodbase.java:1864)
09/03/16 19:03:43 at org.apache.commons.httpclient.httpmethodbase.execute(httpmethodbase.java:975)
09/03/16 19:03:43 at org.apache.commons.httpclient.httpmethoddirector.executewithretry(httpmethoddirector.java:368)
09/03/16 19:03:43 at org.apache.commons.httpclient.httpmethoddirector.executemethod(httpmethoddirector.java:164)
09/03/16 19:03:43 at org.apache.commons.httpclient.httpclient.executemethod(httpclient.java:437)
09/03/16 19:03:43 at org.apache.commons.httpclient.httpclient.executemethod(httpclient.java:324)
09/03/16 19:03:43 at com.zbht.util.timertaskmanager.runurltask(timertaskmanager.java:237)
09/03/16 19:03:43 at _system._timer__task._test._jspservice(_test.java:182)
09/03/16 19:03:43 at com.orionserver.http.orionhttpjsppage.service(orionhttpjsppage.java:59)
09/03/16 19:03:43 at oracle.jsp.runtimev2.jsppagetable.service(jsppagetable.java:462)
09/03/16 19:03:43 at oracle.jsp.runtimev2.jspservlet.internalservice(jspservlet.java:594)
09/03/16 19:03:43 at oracle.jsp.runtimev2.jspservlet.service(jspservlet.java:518)
09/03/16 19:03:43 at javax.servlet.http.httpservlet.service(httpservlet.java:856)
09/03/16 19:03:43 at com.evermind.server.http.servletrequestdispatcher.invoke(servletrequestdispatcher.java:713)
09/03/16 19:03:43 at com.evermind.server.http.servletrequestdispatcher.forwardinternal(servletrequestdispatcher.java:370)
09/03/16 19:03:43 at com.evermind.server.http.httprequesthandler.doprocessrequest(httprequesthandler.java:871)
09/03/16 19:03:43 at com.evermind.server.http.httprequesthandler.processrequest(httprequesthandler.java:453)
09/03/16 19:03:43 at com.evermind.server.http.ajprequesthandler.run(ajprequesthandler.java:302)
09/03/16 19:03:43 at com.evermind.server.http.ajprequesthandler.run(ajprequesthandler.java:190)
09/03/16 19:03:43 at oracle.oc4j.network.serversocketreadhandler$saferunnable.run(serversocketreadhandler.java:260)
09/03/16 19:03:43 at com.evermind.util.releasableresourcepooledexecutor$myworker.run(releasableresourcepooledexecutor.java:303)
09/03/16 19:03:43 at java.lang.thread.run(thread.java:595)
错误信息看上去比较低级:noclassdeffounderror,类没找到,迅速了检查了一下本机和服务器上的jar包是否相同,“一模一样”!这就奇怪了。
检查本机的开发环境,只添加了这两个jar,其他的都没有动过,又检查服务器的运行环境,一样没有变化。于是删掉本机开发环境下的这两个jar,问题浮出来了,类中对httpclient的7、8个引用中只有1个提示未找到指定的类,看来oracle自己的某个包中已经包含某个较低版本的httpclient,jar包冲突的问题是件让人沮丧的事情,尝试解决这种问题会所耗费的时间也许是其他方法的n倍,无心恋战。
其实此处要进行的操作很简单,就是访问指定的url,根据返回的内容检查是否成功,httpclient是完整模拟浏览器,考虑了很多种问题,使用起来反倒是复杂了,决定转用jdk的基础类:java.net.httpurlconnection
事情出奇的顺利,空间里找到了之前写的一个方法,正好解决这个问题,以下是代码清单:
private boolean visiturl(string strurl, string successflag) {
boolean rs = false;
httpurlconnection jconn = null;
bytearrayoutputstream bytearrayoutputstream = new bytearrayoutputstream();
try {
url url = new url(strurl);
jconn = (httpurlconnection) url.openconnection();
jconn.setdooutput(true);
jconn.setdoinput(true);
jconn.connect();
inputstream in = jconn.getinputstream();
byte[] buf = new byte[4096];
int bytesread;
while ((bytesread = in.read(buf)) != -1) {
bytearrayoutputstream.write(buf, 0, bytesread);
}
string strread = new string(bytearrayoutputstream.tobytearray());
logger.debug(strread);
strread = stringutil.nvl(strread);
if(strread.indexof(successflag) != -1) {
logger.info("visit url  success !");
rs = true;
}
} catch (malformedurlexception e) {
e.printstacktrace();
} catch (ioexception e) {
e.printstacktrace();
} finally {
jconn.disconnect();
try {
bytearrayoutputstream.close();
} catch (ioexception e) {
e.printstacktrace();
}
}
return rs;
}

PHP轻论坛
PHP轻论坛

简介PHP轻论坛是一个简单易用的PHP论坛程序,适合小型社区和个人网站使用。v3.0版本是完全重构的版本,解决了之前版本中的所有已知问题,特别是MySQL保留字冲突问题。主要特点• 简单易用:简洁的界面,易于安装和使用• 响应式设计:适配各种设备,包括手机和平板• 安全可靠:避免使用MySQL保留字,防止SQL注入• 功能完善:支持分类、主题、回复、用户管理等基本功能• 易于扩展:模块化设计,便于

PHP轻论坛 21
查看详情 PHP轻论坛

linux

相关标签:
最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号