??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲三级av,最新在线观看av网站,一区在线播放视频http://www.aygfsteel.com/fjin/category/34596.html zh-cnThu, 10 Oct 2013 08:28:57 GMTThu, 10 Oct 2013 08:28:57 GMT60Weblogic10.3.5 数据库连接被异常回收问题解析http://www.aygfsteel.com/fjin/archive/2013/10/10/404841.html走走停停又三q?/dc:creator>走走停停又三q?/author>Thu, 10 Oct 2013 08:18:00 GMThttp://www.aygfsteel.com/fjin/archive/2013/10/10/404841.htmlhttp://www.aygfsteel.com/fjin/comments/404841.htmlhttp://www.aygfsteel.com/fjin/archive/2013/10/10/404841.html#Feedback0http://www.aygfsteel.com/fjin/comments/commentRss/404841.htmlhttp://www.aygfsteel.com/fjin/services/trackbacks/404841.html      首先介绍一个JDBC参数InactiveConnectionTImeoutQ该参数用于强制回收那些被泄露的q接(长时间不使用的连接、未被程序正释攄q接)Q避免连接池因ؓ泄露D无连接可用。当然该参数只是赯助作用,解决问题知道q是在于完善应用E序?br />
      本文和该参数有关Q早期的8.1\9.2中,讑֮该参数时Q定时器(内部的连接池l护Task)只会清理那些长期未被使用的空闲连?从名字上可以看出?Q即对于q行一个长旉执行SQL的连接而言Q它是不受媄响的。但不知道从10.3哪个版本开?我测试的?0.3.5)Q该参数对于长时间执行SQL的连接也q行强制回收了(q个比较不合理,虽然对于正在执行的Tx影响不大Q。Debug了一下,发现SQL执行旉大于4*InactiveConnectionTimeoutӞq个SQL执行完成Ӟ会出?nbsp;<BEA-001153> <Forcibly releasing inactive connection "weblogic.jdbc.wrapper.PoolConnection_oracle_jdbc_driver_T4CConnection@1" back into the connection pool "TestDS", currently reserved by: java.lang.Exceptionq样的错误?br />
//该线Eؓ内部Task执行U程Q该U程目前处于被阻塞状态,{待SQL执行l束后回收连?br />"[STUCK] ExecuteThread: '20' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=2 tid=0x2c4d3400 nid=0x1a14 waiting for monitor entry [0x
319bf000]
   java.lang.Thread.State: BLOCKED (on object monitor)
        at oracle.jdbc.driver.PhysicalConnection.rollback(PhysicalConnection.java:3896)
        - waiting to lock <0x0e6191d8> (a oracle.jdbc.driver.T4CConnection)
        at weblogic.jdbc.wrapper.Connection.forcedCleanup(Connection.java:156)
        at weblogic.common.resourcepool.ResourcePoolImpl.timeoutInactiveResources(ResourcePoolImpl.java:1955)
        at weblogic.common.resourcepool.ResourcePoolImpl.access$8(ResourcePoolImpl.java:1916)
        at weblogic.common.resourcepool.ResourcePoolImpl$ResourcePoolMaintanenceTask.timerExpired(ResourcePoolImpl.java:2680)
        at weblogic.timers.internal.TimerImpl.run(TimerImpl.java:273)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

//该线Eؓ应用执行U程Q目前该U程SQL正在q行Q他dQ阻塞对象ؓT4CConnectionQ了内部Task执行U程
"[STUCK] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=2 tid=0x2c7b4c00 nid=0x1100 runnable [0x2cf7e000]
   java.lang.Thread.State: RUNNABLE
        at java.net.SocketInputStream.socketRead0(Native Method)
        ......
        at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1315)
        at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3576)
        at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3677)
        - locked <0x0e6191d8> (a oracle.jdbc.driver.T4CConnection)
        at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
        at weblogic.jdbc.wrapper.PreparedStatement.execute(PreparedStatement.java:102)
        at com.bea.cs.test.jdbc.DriverTest.inactiveTimeoutTest(DriverTest.java:537)
        at jsp_servlet.__ds._jspService(__ds.java:86)

        从上面的U程堆栈可以看到Q内部TaskU程正在调用connection的rollbackQ即回滚q接上的本地事务。如果应用线E上使用的连接设为auto commit的话Q该SQL执行不会被rollbackQ否则该SQL虽然执行完成也会被rollback?全局事务中,某个事务分支使用的连接一定是非auto commit?Q所以该问题Ҏ及全局事务的应用媄响比较大?br />
        下面我们在看看连接被回收的时间点Z么会出现?-4个InactiveConnectionTimeout之间。当内部Task执行Q发现到了InactiveConnectionTimeout旉点后Q它会调用timeoutInactiveResources()Ҏ开始进行连接清理。那么ؓ什么正在执行SQL的连接会被标志ؓ非活动连接呢Q这里涉及连接状态的三个标志位,分别为:conn_in_useQconnUsedQhang_stateQ这三个标志位是其中的关键(getUsed()和setUsed()Ҏ中会q行标志位操作及dQ如果对于某个连接getUsed()q回false的话Q该q接会被清理Q。下面我们看看其中标志位的变化过E? SQL开始执行时QpreInvokeHandler会被q三个标志位q行讑֮?br />
初始值如下:
conn_in_use-->true
hang_state-->conn_state_in_use
connUsed-->true

W一ơInactiveConnectionTimeout查,getUsedq回trueQ同时调用setUsed(false)Q标志位变化如下Q?br />conn_in_use-->true
hang_state-->conn_state_idle_suspect
connUsed-->true

W二ơInactiveConnectionTimeout查,getUsedq回trueQ同时调用setUsed(false)Q标志位变化如下Q?br />conn_in_use-->false
hang_state-->conn_state_hang_suspect
connUsed-->false

W三ơInactiveConnectionTimeout查,getUsedq回trueQ?br />hang_state-->conn_state_in_useQ从conn_state_hang_suspect变成conn_state_in_useQ?br />同时调用setUsed(false)Q标志位变化如下Q?br />conn_in_use-->false
connUsed-->false
hang_state-->conn_state_idle_suspectQ从conn_state_in_use变成conn_state_idle_suspectQ?br />
W四ơInactiveConnectionTimeout查,getUsedq回falseQ开始回收该q接?br />
从上面的变化旉点可以看CW一ơ到W四ơ检查经历了完整?个InactiveConnectionTimout周期Q而从SQL执行到第一ơ检查点Q这个时间小于一个InactiveConnectionTimeoutQ所以连接开始被回收的时间点介于3-4个InactiveConnectionTimeout之间?br />





]]>
WLS10.3.0中,q接试D的connection pool shrinking(disabling)问题分析http://www.aygfsteel.com/fjin/archive/2011/03/22/346685.html走走停停又三q?/dc:creator>走走停停又三q?/author>Tue, 22 Mar 2011 06:45:00 GMThttp://www.aygfsteel.com/fjin/archive/2011/03/22/346685.htmlhttp://www.aygfsteel.com/fjin/comments/346685.htmlhttp://www.aygfsteel.com/fjin/archive/2011/03/22/346685.html#Feedback1http://www.aygfsteel.com/fjin/comments/commentRss/346685.htmlhttp://www.aygfsteel.com/fjin/services/trackbacks/346685.html阅读全文

]]>
weblogic92q接池的q接数异帔R?(?http://www.aygfsteel.com/fjin/archive/2009/12/22/306905.html走走停停又三q?/dc:creator>走走停停又三q?/author>Tue, 22 Dec 2009 07:52:00 GMThttp://www.aygfsteel.com/fjin/archive/2009/12/22/306905.htmlhttp://www.aygfsteel.com/fjin/comments/306905.htmlhttp://www.aygfsteel.com/fjin/archive/2009/12/22/306905.html#Feedback2http://www.aygfsteel.com/fjin/comments/commentRss/306905.htmlhttp://www.aygfsteel.com/fjin/services/trackbacks/306905.html阅读全文

]]>
Weblogic Apache Plugin由HALF_OPEN_SOCKET_RETRY引v的“No backend server available?/title><link>http://www.aygfsteel.com/fjin/archive/2009/09/14/294742.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Mon, 14 Sep 2009 00:54:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2009/09/14/294742.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/294742.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2009/09/14/294742.html#Feedback</comments><slash:comments>5</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/294742.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/294742.html</trackback:ping><description><![CDATA[     摘要: WeblogicQ?Apache QHALF_OPEN_SOCKET_RETRYQ“No backend server available?nbsp; <a href='http://www.aygfsteel.com/fjin/archive/2009/09/14/294742.html'>阅读全文</a><img src ="http://www.aygfsteel.com/fjin/aggbug/294742.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2009-09-14 08:54 <a href="http://www.aygfsteel.com/fjin/archive/2009/09/14/294742.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>weblogic92q接池的q接数异帔R?/title><link>http://www.aygfsteel.com/fjin/archive/2009/08/29/292494.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Sat, 29 Aug 2009 15:15:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2009/08/29/292494.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/292494.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2009/08/29/292494.html#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/292494.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/292494.html</trackback:ping><description><![CDATA[     摘要: weblogic92, connection pool, current capacity, initial capacity  <a href='http://www.aygfsteel.com/fjin/archive/2009/08/29/292494.html'>阅读全文</a><img src ="http://www.aygfsteel.com/fjin/aggbug/292494.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2009-08-29 23:15 <a href="http://www.aygfsteel.com/fjin/archive/2009/08/29/292494.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>如何在Weblogic的全局事务执行多线E操?/title><link>http://www.aygfsteel.com/fjin/archive/2009/07/31/289276.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Fri, 31 Jul 2009 07:18:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2009/07/31/289276.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/289276.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2009/07/31/289276.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/289276.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/289276.html</trackback:ping><description><![CDATA[     摘要: Weblogic, Global Transaction(全局事务), MultiThread(多线E?  <a href='http://www.aygfsteel.com/fjin/archive/2009/07/31/289276.html'>阅读全文</a><img src ="http://www.aygfsteel.com/fjin/aggbug/289276.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2009-07-31 15:18 <a href="http://www.aygfsteel.com/fjin/archive/2009/07/31/289276.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>关于JMS Message Pending的问?/title><link>http://www.aygfsteel.com/fjin/archive/2009/06/17/282533.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Wed, 17 Jun 2009 01:07:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2009/06/17/282533.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/282533.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2009/06/17/282533.html#Feedback</comments><slash:comments>9</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/282533.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/282533.html</trackback:ping><description><![CDATA[     摘要: Weblogic, JMS, Message Pending的问?nbsp; <a href='http://www.aygfsteel.com/fjin/archive/2009/06/17/282533.html'>阅读全文</a><img src ="http://www.aygfsteel.com/fjin/aggbug/282533.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2009-06-17 09:07 <a href="http://www.aygfsteel.com/fjin/archive/2009/06/17/282533.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Weblogic92中用JDBC store存储sessionӞunique constraint violatedQ唯一U束冲突Q相关问题分?/title><link>http://www.aygfsteel.com/fjin/archive/2009/06/16/282395.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Tue, 16 Jun 2009 01:03:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2009/06/16/282395.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/282395.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2009/06/16/282395.html#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/282395.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/282395.html</trackback:ping><description><![CDATA[     摘要: Weblogic92, JDBC Store引发的ORA-00001问题  <a href='http://www.aygfsteel.com/fjin/archive/2009/06/16/282395.html'>阅读全文</a><img src ="http://www.aygfsteel.com/fjin/aggbug/282395.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2009-06-16 09:03 <a href="http://www.aygfsteel.com/fjin/archive/2009/06/16/282395.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>关于weblogic中jms message的状?/title><link>http://www.aygfsteel.com/fjin/archive/2009/05/21/271989.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Thu, 21 May 2009 07:27:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2009/05/21/271989.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/271989.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2009/05/21/271989.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/271989.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/271989.html</trackback:ping><description><![CDATA[     摘要: Weblogic, JMS 消息状态解?nbsp; <a href='http://www.aygfsteel.com/fjin/archive/2009/05/21/271989.html'>阅读全文</a><img src ="http://www.aygfsteel.com/fjin/aggbug/271989.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2009-05-21 15:27 <a href="http://www.aygfsteel.com/fjin/archive/2009/05/21/271989.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>和JMS Message Cosumer相关的几个问?/title><link>http://www.aygfsteel.com/fjin/archive/2009/04/22/266209.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Wed, 22 Apr 2009 01:35:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2009/04/22/266209.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/266209.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2009/04/22/266209.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/266209.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/266209.html</trackback:ping><description><![CDATA[     摘要: Weblogic, JMS, FileStore, Consumer, MessageListener  <a href='http://www.aygfsteel.com/fjin/archive/2009/04/22/266209.html'>阅读全文</a><img src ="http://www.aygfsteel.com/fjin/aggbug/266209.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2009-04-22 09:35 <a href="http://www.aygfsteel.com/fjin/archive/2009/04/22/266209.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Weblogic中几个internal的XA timeout(状态切换相关的时)http://www.aygfsteel.com/fjin/archive/2009/02/24/256171.html走走停停又三q?/dc:creator>走走停停又三q?/author>Tue, 24 Feb 2009 02:54:00 GMThttp://www.aygfsteel.com/fjin/archive/2009/02/24/256171.htmlhttp://www.aygfsteel.com/fjin/comments/256171.htmlhttp://www.aygfsteel.com/fjin/archive/2009/02/24/256171.html#Feedback2http://www.aygfsteel.com/fjin/comments/commentRss/256171.htmlhttp://www.aygfsteel.com/fjin/services/trackbacks/256171.html阅读全文

]]>
Weblogic中因为IP变更DSubCoordinator not availableQTransaction RollbackException问题调查http://www.aygfsteel.com/fjin/archive/2009/02/23/255808.html走走停停又三q?/dc:creator>走走停停又三q?/author>Mon, 23 Feb 2009 00:07:00 GMThttp://www.aygfsteel.com/fjin/archive/2009/02/23/255808.htmlhttp://www.aygfsteel.com/fjin/comments/255808.htmlhttp://www.aygfsteel.com/fjin/archive/2009/02/23/255808.html#Feedback7http://www.aygfsteel.com/fjin/comments/commentRss/255808.htmlhttp://www.aygfsteel.com/fjin/services/trackbacks/255808.html阅读全文

]]>
Weblogic92, Weblogic10.3在Linux上启动慢的问?/title><link>http://www.aygfsteel.com/fjin/archive/2009/01/22/252337.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Thu, 22 Jan 2009 06:27:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2009/01/22/252337.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/252337.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2009/01/22/252337.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/252337.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/252337.html</trackback:ping><description><![CDATA[<p>        先后有客L到weblogic92, weblogic10.3在linxu上启动慢的问题。从thread dump来看Q线E挂在security相关的随机数生成上面Q因为客h有把thread dump发过来,所以这里就没得贴了?br /> 解决ҎQ?br /> -Djava.security.egd=file:/dev/urandomQ可能还会有问题Q?<br /> -Djava.security.egd=file:/dev/zeroQ可以解决问题)</p> <img src ="http://www.aygfsteel.com/fjin/aggbug/252337.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2009-01-22 14:27 <a href="http://www.aygfsteel.com/fjin/archive/2009/01/22/252337.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>关于Weblogic中XAER_NOTA XAException的两U解?/title><link>http://www.aygfsteel.com/fjin/archive/2009/01/12/250954.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Mon, 12 Jan 2009 12:48:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2009/01/12/250954.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/250954.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2009/01/12/250954.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/250954.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/250954.html</trackback:ping><description><![CDATA[     摘要: weblogic, XAER_NOTA, enlist  <a href='http://www.aygfsteel.com/fjin/archive/2009/01/12/250954.html'>阅读全文</a><img src ="http://www.aygfsteel.com/fjin/aggbug/250954.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2009-01-12 20:48 <a href="http://www.aygfsteel.com/fjin/archive/2009/01/12/250954.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Weblogic中的load banlance问题http://www.aygfsteel.com/fjin/archive/2009/01/12/233188.html走走停停又三q?/dc:creator>走走停停又三q?/author>Mon, 12 Jan 2009 12:08:00 GMThttp://www.aygfsteel.com/fjin/archive/2009/01/12/233188.htmlhttp://www.aygfsteel.com/fjin/comments/233188.htmlhttp://www.aygfsteel.com/fjin/archive/2009/01/12/233188.html#Feedback0http://www.aygfsteel.com/fjin/comments/commentRss/233188.htmlhttp://www.aygfsteel.com/fjin/services/trackbacks/233188.html阅读全文

]]>
Weblogic81中HttpCompleteMessageTimeout相关的两个异?/title><link>http://www.aygfsteel.com/fjin/archive/2008/12/12/245727.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Fri, 12 Dec 2008 01:55:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2008/12/12/245727.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/245727.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2008/12/12/245727.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/245727.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/245727.html</trackback:ping><description><![CDATA[     摘要: HttpCompleteMessageTimeoutQ?BEA-101083Q?BEA-101326  <a href='http://www.aygfsteel.com/fjin/archive/2008/12/12/245727.html'>阅读全文</a><img src ="http://www.aygfsteel.com/fjin/aggbug/245727.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2008-12-12 09:55 <a href="http://www.aygfsteel.com/fjin/archive/2008/12/12/245727.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>关于在weblogic中异步调用webservicehttp://www.aygfsteel.com/fjin/archive/2008/11/24/242288.html走走停停又三q?/dc:creator>走走停停又三q?/author>Mon, 24 Nov 2008 14:38:00 GMThttp://www.aygfsteel.com/fjin/archive/2008/11/24/242288.htmlhttp://www.aygfsteel.com/fjin/comments/242288.htmlhttp://www.aygfsteel.com/fjin/archive/2008/11/24/242288.html#Feedback1http://www.aygfsteel.com/fjin/comments/commentRss/242288.htmlhttp://www.aygfsteel.com/fjin/services/trackbacks/242288.html阅读全文

]]>
Weblogic执行transaction recover到的奇怪问?/title><link>http://www.aygfsteel.com/fjin/archive/2008/11/23/241837.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Sun, 23 Nov 2008 11:55:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2008/11/23/241837.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/241837.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2008/11/23/241837.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/241837.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/241837.html</trackback:ping><description><![CDATA[     摘要: Weblogic执行transaction recover到的奇怪问?nbsp; <a href='http://www.aygfsteel.com/fjin/archive/2008/11/23/241837.html'>阅读全文</a><img src ="http://www.aygfsteel.com/fjin/aggbug/241837.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2008-11-23 19:55 <a href="http://www.aygfsteel.com/fjin/archive/2008/11/23/241837.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Weblogic中几个可以通过反射配置属性的MBeanhttp://www.aygfsteel.com/fjin/archive/2008/11/20/241734.html走走停停又三q?/dc:creator>走走停停又三q?/author>Thu, 20 Nov 2008 10:17:00 GMThttp://www.aygfsteel.com/fjin/archive/2008/11/20/241734.htmlhttp://www.aygfsteel.com/fjin/comments/241734.htmlhttp://www.aygfsteel.com/fjin/archive/2008/11/20/241734.html#Feedback0http://www.aygfsteel.com/fjin/comments/commentRss/241734.htmlhttp://www.aygfsteel.com/fjin/services/trackbacks/241734.html阅读全文

]]>
析weblogic10 plugin中的DynamicServerList http://www.aygfsteel.com/fjin/archive/2008/11/13/240308.html走走停停又三q?/dc:creator>走走停停又三q?/author>Thu, 13 Nov 2008 05:48:00 GMThttp://www.aygfsteel.com/fjin/archive/2008/11/13/240308.htmlhttp://www.aygfsteel.com/fjin/comments/240308.htmlhttp://www.aygfsteel.com/fjin/archive/2008/11/13/240308.html#Feedback6http://www.aygfsteel.com/fjin/comments/commentRss/240308.htmlhttp://www.aygfsteel.com/fjin/services/trackbacks/240308.html阅读全文

]]>
weblogic-ejb-jar.xml的元素解?/title><link>http://www.aygfsteel.com/fjin/archive/2008/10/10/233576.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Fri, 10 Oct 2008 15:42:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2008/10/10/233576.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/233576.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2008/10/10/233576.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/233576.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/233576.html</trackback:ping><description><![CDATA[     摘要: weblogic-ejb-jar.xml的元素解?  <a href='http://www.aygfsteel.com/fjin/archive/2008/10/10/233576.html'>阅读全文</a><img src ="http://www.aygfsteel.com/fjin/aggbug/233576.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2008-10-10 23:42 <a href="http://www.aygfsteel.com/fjin/archive/2008/10/10/233576.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Weblogic session persistence的性能的问?/title><link>http://www.aygfsteel.com/fjin/archive/2008/09/27/231520.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Sat, 27 Sep 2008 09:18:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2008/09/27/231520.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/231520.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2008/09/27/231520.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/231520.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/231520.html</trackback:ping><description><![CDATA[     摘要: Weblogic, Session, Persistence, JDBC, 性能问题  <a href='http://www.aygfsteel.com/fjin/archive/2008/09/27/231520.html'>阅读全文</a><img src ="http://www.aygfsteel.com/fjin/aggbug/231520.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2008-09-27 17:18 <a href="http://www.aygfsteel.com/fjin/archive/2008/09/27/231520.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>关于Weblogic Server重启或log rotationDserver.log?i node number变化问题http://www.aygfsteel.com/fjin/archive/2008/09/27/231483.html走走停停又三q?/dc:creator>走走停停又三q?/author>Sat, 27 Sep 2008 06:05:00 GMThttp://www.aygfsteel.com/fjin/archive/2008/09/27/231483.htmlhttp://www.aygfsteel.com/fjin/comments/231483.htmlhttp://www.aygfsteel.com/fjin/archive/2008/09/27/231483.html#Feedback0http://www.aygfsteel.com/fjin/comments/commentRss/231483.htmlhttp://www.aygfsteel.com/fjin/services/trackbacks/231483.html阅读全文

]]>
关于weblogic中用Dom4j、XercesD执行U程挂v的问?/title><link>http://www.aygfsteel.com/fjin/archive/2008/09/13/228788.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Sat, 13 Sep 2008 13:57:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2008/09/13/228788.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/228788.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2008/09/13/228788.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/228788.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/228788.html</trackback:ping><description><![CDATA[     摘要: Weblogic, Dom4j, SAXParserFactpry,ZipFile.getEntry(), class loader. 本文阐述了weblogic中用dom4jӞ如何定义SAXParserFactory实现cȝ问题?nbsp; <a href='http://www.aygfsteel.com/fjin/archive/2008/09/13/228788.html'>阅读全文</a><img src ="http://www.aygfsteel.com/fjin/aggbug/228788.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2008-09-13 21:57 <a href="http://www.aygfsteel.com/fjin/archive/2008/09/13/228788.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>关于weblogic中用prepared statement cache后操作DDL的问?/title><link>http://www.aygfsteel.com/fjin/archive/2008/09/12/228536.html</link><dc:creator>走走停停又三q?/dc:creator><author>走走停停又三q?/author><pubDate>Fri, 12 Sep 2008 04:26:00 GMT</pubDate><guid>http://www.aygfsteel.com/fjin/archive/2008/09/12/228536.html</guid><wfw:comment>http://www.aygfsteel.com/fjin/comments/228536.html</wfw:comment><comments>http://www.aygfsteel.com/fjin/archive/2008/09/12/228536.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fjin/comments/commentRss/228536.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fjin/services/trackbacks/228536.html</trackback:ping><description><![CDATA[     摘要: Weblogic, WLConnection, getVendorConnection, PreparedStatement cache, DDLQ?本文阐述了在weblogic中用了prepared statement cache的情况下Q如果后台数据库因ؓDDL而导致表l构发生变化的时候,如何规避prepared statementD的SQLException?nbsp; <a href='http://www.aygfsteel.com/fjin/archive/2008/09/12/228536.html'>阅读全文</a><img src ="http://www.aygfsteel.com/fjin/aggbug/228536.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fjin/" target="_blank">走走停停又三q?/a> 2008-09-12 12:26 <a href="http://www.aygfsteel.com/fjin/archive/2008/09/12/228536.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <a href="http://www.aygfsteel.com/" title="狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频">狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频</a> </div> </footer> վ֩ģ壺 <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">Ӧñر</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">½</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">Դ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">פ</a>| <a href="http://" target="_blank">˳</a>| <a href="http://" target="_blank">±</a>| <a href="http://" target="_blank">ƽ</a>| <a href="http://" target="_blank">׿</a>| <a href="http://" target="_blank">֦</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ɽ</a>| <a href="http://" target="_blank">޽</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">Ͽ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ɽ</a>| <a href="http://" target="_blank">Ĭ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">캵</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ƽ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">Ϫ</a>| <a href="http://" target="_blank">½</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">͸</a>| <a href="http://" target="_blank">ͨ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ɽ</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>