- 浏览: 605424 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
limeng650419:
想要将一个项目类生成在同一个类图怎么办》?
PowerDesigner导入java类生成类图 -
q77102902:
一语道破天机啊!
Weblogic 数据源及连接池配置问题Warning! Connectivity to backend database not verified -
chaliszhou:
收藏下,!!!
JAVA读写文件,如何避免中文乱码 -
lal324:
同上 顶起来
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/di -
luchuan10000:
非常正确!!!
JAVA读写文件,如何避免中文乱码
<2009-7-10 下午05时46分07秒 CST> <Error> <WebLogicServer> <BEA-000337> <[STUCK] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "704" seconds working on the request "Http Request: /mm5/graph/getdata.jsp", which is more than the configured time (StuckThreadMaxTime) of "600" seconds. Stack trace:
java.net.SocketInputStream.socketRead0(Native Method)
java.net.SocketInputStream.read(SocketInputStream.java:129)
weblogic.jdbc.sqlserver.SQLServerByteOrderedDataReader.makeMoreDataAvailable(Unknown Source)
weblogic.jdbc.sqlserver.SQLServerByteOrderedDataReader.getArrayOfBytes(Unknown Source)
weblogic.util.UtilPagedTempBuffer.write(Unknown Source)
weblogic.jdbc.sqlserver.SQLServerColumn.cacheLongData(Unknown Source)
weblogic.jdbc.sqlserver.tds.TDSRequest.getColumnDataForRow(Unknown Source)
weblogic.jdbc.sqlserver.SQLServerImplResultSet.getData(Unknown Source)
weblogic.jdbc.base.BaseResultSet.getBinaryStream(Unknown Source)
weblogic.jdbc.base.BaseResultSet.getBinaryStream(Unknown Source)
weblogic.jdbc.wrapper.ResultSet_weblogic_jdbc_base_BaseResultSet.getBinaryStream(Unknown Source)
jsp_servlet._graph.__getdata._jspService(__getdata.java:177)
weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3370)
weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
weblogic.security.service.SecurityManager.runAs(Unknown Source)
weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2117)
weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2023)
weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1359)
weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
>
Connection reset by peer: socket write error
这个跟数据库没有关系,当客户端发出请求(request)后,如果还没有完全获得服务端的响应(response),客户端与服务器段的连接断开(例如断网、按了“停止”按钮、或者客户端浏览器关闭等),服务器端就会抛出此Exception。
Causes and solutions
This exception occurs when a client made a request, and before receiving the full response, either of the following happened:
client's browser has been closed.
client's connection has been disconnected.
client presses the stop button.
This exception is normally harmless. It does not seem possible to trap this exception with J2SE.
Connection reset by peer的原因:
经常出现的Connection reset by peer: 原因可能是多方面的,不过更常见的原因是:
①:服务器的并发连接数超过了其承载量,服务器会将其中一些连接Down掉;
②:客户关掉了浏览器,而服务器还在给客户端发送数据;
③:浏览器端按了Stop
java.net.SocketInputStream.socketRead0(Native Method)
java.net.SocketInputStream.read(SocketInputStream.java:129)
weblogic.jdbc.sqlserver.SQLServerByteOrderedDataReader.makeMoreDataAvailable(Unknown Source)
weblogic.jdbc.sqlserver.SQLServerByteOrderedDataReader.getArrayOfBytes(Unknown Source)
weblogic.util.UtilPagedTempBuffer.write(Unknown Source)
weblogic.jdbc.sqlserver.SQLServerColumn.cacheLongData(Unknown Source)
weblogic.jdbc.sqlserver.tds.TDSRequest.getColumnDataForRow(Unknown Source)
weblogic.jdbc.sqlserver.SQLServerImplResultSet.getData(Unknown Source)
weblogic.jdbc.base.BaseResultSet.getBinaryStream(Unknown Source)
weblogic.jdbc.base.BaseResultSet.getBinaryStream(Unknown Source)
weblogic.jdbc.wrapper.ResultSet_weblogic_jdbc_base_BaseResultSet.getBinaryStream(Unknown Source)
jsp_servlet._graph.__getdata._jspService(__getdata.java:177)
weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3370)
weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
weblogic.security.service.SecurityManager.runAs(Unknown Source)
weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2117)
weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2023)
weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1359)
weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
>
Connection reset by peer: socket write error
这个跟数据库没有关系,当客户端发出请求(request)后,如果还没有完全获得服务端的响应(response),客户端与服务器段的连接断开(例如断网、按了“停止”按钮、或者客户端浏览器关闭等),服务器端就会抛出此Exception。
Causes and solutions
This exception occurs when a client made a request, and before receiving the full response, either of the following happened:
client's browser has been closed.
client's connection has been disconnected.
client presses the stop button.
This exception is normally harmless. It does not seem possible to trap this exception with J2SE.
Connection reset by peer的原因:
经常出现的Connection reset by peer: 原因可能是多方面的,不过更常见的原因是:
①:服务器的并发连接数超过了其承载量,服务器会将其中一些连接Down掉;
②:客户关掉了浏览器,而服务器还在给客户端发送数据;
③:浏览器端按了Stop
发表评论
-
linux下查看tomcat输出日志
2010-08-16 16:06 1664进入tomcat安装路径下的logs目录下,使用tail -f ... -
Tomcat日志记录激活配置方法
2010-06-02 21:31 1963目录 1. 文档说明 1 2. 系统日志激活方式 1 2.1. ... -
Cannot create JDBC driver of class '' for connect URL 'null'
2010-05-17 12:52 1631tomcat-5.5.20下配置数据源报错:Cannot cr ... -
javax.naming.NameNotFoundException: Name portal is not bound in this Context
2010-05-17 12:16 1755tomcat-5.5.20部署hibernate应用,报错为: ... -
weblogic connection pool设置及其参数说明
2010-05-15 00:41 7873进入weblogic后台,配置 ... -
查看安装在unix下jakarta-tomcat-5.0.30的日志
2010-04-29 18:30 1278找到tomcat下的logs目录下应用命令如下: tail - ... -
Catalina.stop: java.net.ConnectException: Connection refused
2010-04-27 14:24 5187[root@www bin]# ./shutdown.sh U ... -
tomcat catalina.bat介绍
2010-04-24 01:29 2309Catalina.bat是tomcat所有脚本中最重 ... -
HTTP Status 403 - Access to the requested resource has been denied
2010-03-07 00:10 3056HTTP Status 403 - Access to the ... -
tomcat-5.0.28中文乱码解决办法
2010-01-18 17:48 1014当用Request对象获取客户提交的汉字代码的时候,会出现乱码 ... -
proxool连接池配置详细说明
2010-01-16 02:27 1273proxool连接池配置详细说明 目前市面上三 ... -
安装版tomcat5.208注册为windows服务
2010-01-13 00:23 1438进入tomcat安装路径的bin下找到service.bat ... -
指定tomcat中session过期时间
2010-01-12 15:10 14241. 在server.xml中定义context时采用如下定义 ... -
weblogic检查servlet配置说明
2009-12-29 15:41 1594将所有Web Application应用的属性Servlet ... -
unix下建立一个domain
2009-12-29 14:52 1528HP-UX srv01_1 B.11.23 U ia64 (t ... -
could not extract the archive since it is corrupted
2009-12-23 18:19 2204刚才在安装weblogic814,遇到一个错误,could n ... -
部属项目到weblogic时出现 Attempt to change ContentType after call
2009-11-25 11:12 1740java.lang.IllegalStateException ... -
ClassNotFoundException: org.hibernate.hql.ast.HqlToken
2009-11-21 10:47 1428原因:从网上获知,weblogic.jar中已经有了一个 ... -
Weblogic 数据源及连接池配置问题Warning! Connectivity to backend database not verified
2009-11-20 15:36 5982在weblogic8.14下建立pool过程中,点击Test ... -
This page allows you to manually administer each deployed instance of this JDBC
2009-11-20 15:10 1003Shrink - reduces the number of ...
相关推荐
离线安装包,亲测可用
离线安装包,亲测可用
【标题】"bea-critical-css-源码.rar" 提供的是有关 "Critical CSS" 的源码,这是一项优化Web页面加载性能的关键技术。在现代网页开发中,Critical CSS(也称为 Above-the-Fold CSS)是指对首屏内容渲染至关重要的...
标题中的"bea-olp.zip"表明这是一个归档文件,通常包含一组相关的文件或项目。在IT领域,".zip"扩展名表示这是一个压缩文件,使用了ZIP格式来减小文件大小,便于存储和传输。ZIP文件可以包含任何类型的文件,如代码...
### 关于BEA WebLogic Server 10.0配置向导的理解与应用 #### 一、引言 BEA WebLogic Server是一款高级的企业级应用程序服务器,由BEA Systems开发并维护,现已被Oracle公司收购。它支持Java EE标准,提供了一个...
日志报错:服务器无法启动,错误消息为“BEA-000337: Server failed to start due to an internal error”。 排查思路:查看更详细的错误日志,确定导致服务器启动失败的具体原因,如配置问题、资源冲突等。 解决...
【标题】"BEA WebService 相关文档" 涉及的是BEA Systems公司(已被Oracle收购)在Web服务领域的技术文档。这些文档主要涵盖了Web服务的基础、高级特性和安全指南,对于理解BEA系统如何支持和实现Web服务至关重要。 ...
**BEA TUXEDO快速入门** BEA TUXEDO是一个强大的分布式应用程序开发和管理平台,特别适合在企业级和互联网环境中构建三层结构的客户/服务器应用系统。该平台的核心功能包括分布式事务处理和应用通信,使得开发人员...
对 BEA-000449 进行设置,包括: * Set the parameter -Dweblogic.client.socket.ConnectTimeout=XXX, in the start-up script of the server * Server -> Protocols (tab) -> HTTP (sub-tab) -> Duration(持续...
**BEA Weblogic配置Oracle连接池详解** BEA Weblogic Server(WLS)是一款功能强大的应用服务器,它支持多种数据库连接,包括Oracle数据库。配置Oracle连接池是确保Weblogic能够高效、安全地与Oracle数据库交互的...
官方离线安装包,测试可用。使用rpm -ivh [rpm完整包名] 进行安装
官方离线安装包,测试可用。使用rpm -ivh [rpm完整包名] 进行安装
官方离线安装包,测试可用。使用rpm -ivh [rpm完整包名] 进行安装
官方离线安装包,测试可用。使用rpm -ivh [rpm完整包名] 进行安装
官方离线安装包,测试可用。使用rpm -ivh [rpm完整包名] 进行安装
官方离线安装包,测试可用。使用rpm -ivh [rpm完整包名] 进行安装
离线安装包,亲测可用
离线安装包,亲测可用
WebLogic错误通常以`WLS-`或`BEA-`开头,每个错误代码都对应一个具体的错误条件。例如,`WLS-00001`表示服务器启动失败,`BEA-000365`是关于安全认证的问题。查阅官方文档或在线资源可以帮助我们理解这些错误代码的...
27010571: <BEA-000503> 26075541: .APPMERGEGEN_$DIGIT DIR REMAIN EVERY TIME BY DEPLOYING A EAR ON WLS 12.2.1 27823500: REGRESSION BUG WHICH INTRODUCED BY THE BUG FIXING OF 27678101 27248932: ...