原创 weblogic 如何進行連接回收

一、gc回收 web應用 → 連接池回收 weblogic jconnector Garbage Collector Method:(wls api) WebLogic Server automatically detects conne

原创 收藏系統工程師solving

http://www.hashei.me/monthly-archives

原创 WEBLOGIC INACTIVE CONNECTIONS

InactiveConnectionTimeoutSecondsThe number of seconds of inactivity after which reserved connections will be forcibly r

原创 Bean的初始化和銷燬過程(回調方法)&後置處理

Spring IoC容器對Bean生命週期進行管理的過程: 1)通過構造器或者工廠方法創建Bean實例 2)爲Bean的屬性設置值和對其他Bean的引用 3)調用Bean的初始化回調方法 4)Bean可以使用了 5)當容器關閉時,調用Be

原创 顯式事務控制的隱式提交

如程序: Connection conn = getConnection(); conn.setAutoCommit(false); /* **DB業務1->select **DB業務2->update */ //conn.commit(

原创 JDBC Connection Pool --> Monitoring

From the JDBC Connection Pool—>Monitoring tab, you can view information about the state of each deployed instance of th

原创 Spring的工作原理

1、Spring作爲第三方,容器型架構,獨立於java bean 與 web服務器之間;   2、控制反轉Ioc爲java bean更好的鬆耦合提供了方法;   3、面向對象變成的接口與實現分離原則。   以下舉例說明:   我們開發一個

原创 weblogic 應用事項

創建 WebLogic 配置 / 域 域是一組邏輯上相關的 WebLogic Server 資源,您可以把它當作單個管理單元進行管理。域將所有的資源和應用程序信息保存在一個基於 XML 的配置庫中。爲了在 WebLogic Server

原创 ArrayList與LinkedList的差別

1.ArrayList是實現了基於動態數組的數據結構,LinkedList基於鏈表的數據結構。2.對於隨機訪問get和set,ArrayList覺得優於LinkedList,LinkedList要移動指針。3.對於新增和刪除操作add和r

原创 用盡的ResultSet

發現程序報告“用盡的ResultSet”錯誤,一般可以通過如下方式排除: 1、返回的ResultSet爲NULL,此時調用next函數會報告此類錯誤; 2、ResultSet已經到達記錄集尾部,再調用next函數會報告此類錯誤; 3、Re

原创 weblogic Shrinking

Shrinking a Connection PoolJDBCConnectionPoolRuntimeMBean.shrink()A connection pool has a set of properties that defin

原创 甲骨文收購SUN

甲骨文以每股高出IBM0.1美元的價格收購SUN,將改變IT業!    我也趁此機會把blog轉移到CSDN,所謂借個好彩頭~  

原创 java.net.SocketException: Broken pipe

症狀: WARNING: Error sending end packetjava.net.SocketException: Broken pipe 資料: Broken pipe產生的原因通常是當管道讀端沒有在讀,而管道的寫端繼續有線程

原创 MAC下GIT操作

https://blog.csdn.net/shaa3747/article/details/80296469   https://blog.csdn.net/ltstud/article/details/79725393

原创 filter & interceptor