Java dbcp

http://blog.csdn.net/hgd250/article/details/2775833
http://blog.csdn.net/zzp_403184692/article/details/7854461
http://www.cnblogs.com/wang-meng/p/5463020.html
問(wèn)題:

  1. 系統(tǒng)的dbcp創(chuàng)建過(guò)程
  2. dbcp的配置文檔創(chuàng)建為xml時(shí),如何使用
  3. properties創(chuàng)建使用
    4.其他技術(shù)

ps:還在探索中展辞。胚膊。玫鸟。。稳其。疼电。


java中 synchronized 的使用分衫,確保異步執(zhí)行某一段代碼
http://www.cnblogs.com/wayne173/p/4121516.html

創(chuàng)建數(shù)據(jù)源

package me.gacl.util;

import java.io.InputStream;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;
import javax.sql.DataSource;
import org.apache.commons.dbcp2.BasicDataSourceFactory;

/**
* @ClassName: JdbcUtils_DBCP
* @Description: 數(shù)據(jù)庫(kù)連接工具類(lèi)
* @author: Jony
* @date: 2014-10-4 下午6:04:36
*
*/ 
public class JdbcUtils_DBCP {
    /**
     * 在java中模聋,編寫(xiě)數(shù)據(jù)庫(kù)連接池需實(shí)現(xiàn)java.sql.DataSource接口肩民,每一種數(shù)據(jù)庫(kù)連接池都是DataSource接口的實(shí)現(xiàn)
     * DBCP連接池就是java.sql.DataSource接口的一個(gè)具體實(shí)現(xiàn)
     */
    private static DataSource ds = null;
    //在靜態(tài)代碼塊中創(chuàng)建數(shù)據(jù)庫(kù)連接池
    static{
        try{
            //加載dbcpconfig.properties配置文件
            InputStream in = JdbcUtils_DBCP.class.getClassLoader().getResourceAsStream("dbcpconfig.properties");
            Properties prop = new Properties();
            prop.load(in);
            //創(chuàng)建數(shù)據(jù)源
            ds = BasicDataSourceFactory.createDataSource(prop);
        }catch (Exception e) {
            throw new ExceptionInInitializerError(e);
        }
    }
    
    /**
    * @Method: getConnection
    * @Description: 從數(shù)據(jù)源中獲取數(shù)據(jù)庫(kù)連接
    * @Anthor:孤傲蒼狼
    * @return Connection
    * @throws SQLException
    */ 
    public static Connection getConnection() throws SQLException{
        //從數(shù)據(jù)源中獲取數(shù)據(jù)庫(kù)連接
        return ds.getConnection();
    }
    
    /**
    * @Method: release
    * @Description: 釋放資源,
    * 釋放的資源包括Connection數(shù)據(jù)庫(kù)連接對(duì)象链方,負(fù)責(zé)執(zhí)行SQL命令的Statement對(duì)象持痰,存儲(chǔ)查詢(xún)結(jié)果的ResultSet對(duì)象
    * @Anthor:孤傲蒼狼
    *
    * @param conn
    * @param st
    * @param rs
    */ 
    public static void release(Connection conn,Statement st,ResultSet rs){
        if(rs!=null){
            try{
                //關(guān)閉存儲(chǔ)查詢(xún)結(jié)果的ResultSet對(duì)象
                rs.close();
            }catch (Exception e) {
                e.printStackTrace();
            }
            rs = null;
        }
        if(st!=null){
            try{
                //關(guān)閉負(fù)責(zé)執(zhí)行SQL命令的Statement對(duì)象
                st.close();
            }catch (Exception e) {
                e.printStackTrace();
            }
        }
        
        if(conn!=null){
            try{
                //將Connection連接對(duì)象還給數(shù)據(jù)庫(kù)連接池
                conn.close();
            }catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
}

創(chuàng)建連接的類(lèi)

package me.gacl.util;

//database
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;



//Class
import me.gacl.domain.ClientInfo;
import me.gacl.domain.User;
import me.gacl.domain.RcuInfo;

//data sourcce
import me.gacl.util.JdbcUtils_DBCP;

public class RegisterUtil {
    
    //注冊(cè)完后,獲取相關(guān)信息祟蚀,用于返回客戶端
    public Integer roomIdInteger;
    public RcuInfo rcuInfo;
    
    //記錄注冊(cè)過(guò)程中的錯(cuò)誤信息,內(nèi)容不能有特殊字符
    public String errorInfo;
    

    public boolean register(User user, ClientInfo clientInfo) {
        if (!user.isThePasswordCorrect("123456")) {
            System.out.println("User password error !");
            errorInfo = "User password error!";
            return false;
        }
        
        if (!userInfoCheck(user)) {
            System.out.println("userInfoCheck false !");
            return false;
        }
        
        if (!addClientInfoToDatabase(user,clientInfo)) {
            System.out.println("addClientInfoToDatabase false !");
            return false;
        }
        
        return true;
    }
    
    private boolean userInfoCheck(User user) {
        //記錄狀態(tài)
        boolean isSuccess = false;
        
        //System.out.println("userInfoCheck");
        Connection con = null;
        Statement sm = null;
        ResultSet rs = null;
        try{
            //獲取數(shù)據(jù)庫(kù)連接
            con = JdbcUtils_DBCP.getConnection();
            sm = con.createStatement(); 
            
            // 查詢(xún)操作
            String sqlSelect = "select * from room where RoomNum = "+user.getName()+"";
            rs = sm.executeQuery(sqlSelect);
            if(rs.next()){
                roomIdInteger = rs.getInt("RID");
                //rcuInfo.setIpString(rs.getString("zIP"));
                //rcuInfo.setPortInteger(rs.getInt("zPort"));
                int port = rs.getInt("zPort");
                String ip = rs.getString("zIP");
                rcuInfo = new RcuInfo(ip, port);

                isSuccess = true;
                //System.out.printf("zPort = %d,zIP = %s", port, ip);
            }else {
                errorInfo = "Room number doesn't exist !";
                //return false;
            }
            
        }catch (Exception e) {
            errorInfo = "Database error !";
            e.printStackTrace();
        }finally{
            //釋放資源
            JdbcUtils_DBCP.release(con, sm, rs);
        }
        
        return isSuccess;
    }
    
    private boolean addClientInfoToDatabase(User user, ClientInfo clientInfo){
        //記錄狀態(tài)
        boolean isSuccess = false;
        
        //System.out.println("addClientInfoToDatabase");
        Connection conn = null;
        Statement sm = null;
        ResultSet rs = null;
        try{
            //獲取數(shù)據(jù)庫(kù)連接
            conn = JdbcUtils_DBCP.getConnection();
            sm = conn.createStatement(); 
            String sqlUpdate = "update room set padIP='"+clientInfo.getIpString()+"',padPort='"+clientInfo.getPortInt()+"' where RoomNum = '"+user.getName()+"'";
            int tag = sm.executeUpdate(sqlUpdate);
            //System.out.printf("tag = %d",tag);
            if (tag == 1) {
                isSuccess = true;
            }else {
                isSuccess = false;
            }
            //tag=0不存在錯(cuò)誤
                      
        }catch (Exception e) {
            errorInfo = "Database error !";
            e.printStackTrace();
        }finally{
            //釋放資源
            JdbcUtils_DBCP.release(conn, sm, rs);
        }
        return isSuccess;
    }
    
}

附dbcpconfig.properties配置文件

src->New->file->file name:dbcpconfig.properties

#連接設(shè)置
driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver
url=jdbc:sqlserver://localhost:1433;databaseName=IRCSData
username=sa
password=123

#<!-- 初始化連接 -->
initialSize=10

#最大連接數(shù)量
maxActive=50

#<!-- 最大空閑連接 -->
maxIdle=20

#<!-- 最小空閑連接 -->
minIdle=5

#<!-- 超時(shí)等待時(shí)間以毫秒為單位 6000毫秒/1000等于60秒 -->
maxWait=60000


#JDBC驅(qū)動(dòng)建立連接時(shí)附帶的連接屬性屬性的格式必須為這樣:[屬性名=property;] 
#注意:"user" 與 "password" 兩個(gè)屬性會(huì)被明確地傳遞工窍,因此這里不需要包含他們。
connectionProperties=useUnicode=true;characterEncoding=UTF8

#指定由連接池所創(chuàng)建的連接的自動(dòng)提交(auto-commit)狀態(tài)前酿。
defaultAutoCommit=true

#driver default 指定由連接池所創(chuàng)建的連接的只讀(read-only)狀態(tài)患雏。
#如果沒(méi)有設(shè)置該值,則“setReadOnly”方法將不被調(diào)用罢维。(某些驅(qū)動(dòng)并不支持只讀模式淹仑,如:Informix)
defaultReadOnly=

#driver default 指定由連接池所創(chuàng)建的連接的事務(wù)級(jí)別(TransactionIsolation)。
#可用值為下列之一:(詳情可見(jiàn)javadoc肺孵。)NONE,READ_UNCOMMITTED, READ_COMMITTED, REPEATABLE_READ, SERIALIZABLE
defaultTransactionIsolation=READ_UNCOMMITTED

連接類(lèi)創(chuàng)建對(duì)象匀借,使用

package me.gacl.web.controller;

//database testting
import me.gacl.domain.ClientInfo;
import me.gacl.domain.User;
//import me.gacl.test.DataSourceTest;

//Register util
//import me.gacl.domain.ClientInfo;
//import me.gacl.domain.User;
//import me.gacl.domain.RcuInfo;
//import me.gacl.util.JdbcUtils_DBCP;
import me.gacl.util.RegisterUtil;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
//import javax.servlet.jsp.tagext.TryCatchFinally;

public class RegisterServlet extends HttpServlet {

    /**
     * Constructor of the object.
     */
    public RegisterServlet() {
        super();
    }

    /**
     * Destruction of the servlet. <br>
     */
    public void destroy() {
        super.destroy(); // Just puts "destroy" string in log
        // Put your code here
    }

    /**
     * The doGet method of the servlet. <br>
     *
     * This method is called when a form has its tag value method equals to get.
     * 
     * @param request the request send by the client to the server
     * @param response the response send by the server to the client
     * @throws ServletException if an error occurred
     * @throws IOException if an error occurred
     */
    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        boolean isSuccess = false;
        //database testting
        //DataSourceTest.dbcpDataSourceTest();
        
        //get client data
        String userId = request.getParameter("userId");
        String userPwd = request.getParameter("userPwd");
        String clientIp = request.getParameter("localIp");
        String clientPort = request.getParameter("localPort");
        
        //判斷請(qǐng)求參數(shù)是否完整
        if (userId == null|| userPwd == null||clientIp == null||clientPort == null) {
            requestParamenterError(response);
            System.out.println("Request paramenter error!");
            return;
        }
        
        //注冊(cè)功能
        RegisterUtil registerUtil = new RegisterUtil();
        User user = new User(userId, userPwd);
        ClientInfo clientInfo = new ClientInfo(clientIp, Integer.parseInt(clientPort));
        if (registerUtil.register(user, clientInfo)){
            isSuccess = true;
            System.out.printf("\nRegister return:RID = %d\t zIp = %s\tzPort = %d"
                    , registerUtil.roomIdInteger
                    , registerUtil.rcuInfo.getIpString()
                    , registerUtil.rcuInfo.getPortInt());
        }else {
            System.out.printf("\nRegister error !"
                    + "\nError Info:"
                    + registerUtil.errorInfo);
        }
        
        
        //return client
        response.setCharacterEncoding("UTF-8");
        response.setContentType("application/json; charset=utf-8");
        PrintWriter out = null;
        
        String jsonString = "{\"isSuccess\":"+isSuccess;
        if (isSuccess) {
            jsonString +=  ", \"roomId\":"+registerUtil.roomIdInteger
                    + ", \"rcuInfo\":{\"rcuIp\":\""+registerUtil.rcuInfo.getIpString()+"\", \"rcuPort\":"+registerUtil.rcuInfo.getPortInt()+"}"
                    + "}";
        }else{
            jsonString += ",\"errorInfo\":\""+registerUtil.errorInfo+"\""
                    +"}";
        }               
        
        try {
            out = response.getWriter();
            out.print(jsonString);
        } catch (Exception e) {
            e.printStackTrace();
        } finally{
            if(out != null){
                out.close();
            }
        }
        
    }

    public void requestParamenterError(HttpServletResponse response) {
        response.setCharacterEncoding("UTF-8");
        response.setContentType("application/json; charset=utf-8");
        PrintWriter out = null;
        
        String jsonString = "{\"isSuccess\":false, \"errorInfo\":\"Request paramenter error!\"}";
        try {
            out = response.getWriter();
            out.print(jsonString);
        } catch (Exception e) {
            e.printStackTrace();
        } finally{
            if(out != null){
                out.close();
            }
        }
    }
    
    /**
     * The doPost method of the servlet. <br>
     *
     * This method is called when a form has its tag value method equals to post.
     * 
     * @param request the request send by the client to the server
     * @param response the response send by the server to the client
     * @throws ServletException if an error occurred
     * @throws IOException if an error occurred
     */
    public void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        doGet(request, response);
    }

    /**
     * Initialization of the servlet. <br>
     *
     * @throws ServletException if an error occurs
     */
    public void init() throws ServletException {
        // Put your code here
    }

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市平窘,隨后出現(xiàn)的幾起案子怀吻,更是在濱河造成了極大的恐慌,老刑警劉巖初婆,帶你破解...
    沈念sama閱讀 216,372評(píng)論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件蓬坡,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡磅叛,警方通過(guò)查閱死者的電腦和手機(jī)屑咳,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,368評(píng)論 3 392
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)弊琴,“玉大人兆龙,你說(shuō)我怎么就攤上這事∏枚” “怎么了紫皇?”我有些...
    開(kāi)封第一講書(shū)人閱讀 162,415評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)腋寨。 經(jīng)常有香客問(wèn)我聪铺,道長(zhǎng),這世上最難降的妖魔是什么萄窜? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,157評(píng)論 1 292
  • 正文 為了忘掉前任铃剔,我火速辦了婚禮撒桨,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘键兜。我一直安慰自己凤类,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,171評(píng)論 6 388
  • 文/花漫 我一把揭開(kāi)白布普气。 她就那樣靜靜地躺著谜疤,像睡著了一般。 火紅的嫁衣襯著肌膚如雪现诀。 梳的紋絲不亂的頭發(fā)上茎截,一...
    開(kāi)封第一講書(shū)人閱讀 51,125評(píng)論 1 297
  • 那天,我揣著相機(jī)與錄音赶盔,去河邊找鬼企锌。 笑死,一個(gè)胖子當(dāng)著我的面吹牛于未,可吹牛的內(nèi)容都是我干的撕攒。 我是一名探鬼主播,決...
    沈念sama閱讀 40,028評(píng)論 3 417
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼烘浦,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼抖坪!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起闷叉,我...
    開(kāi)封第一講書(shū)人閱讀 38,887評(píng)論 0 274
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤擦俐,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后握侧,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體蚯瞧,經(jīng)...
    沈念sama閱讀 45,310評(píng)論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,533評(píng)論 2 332
  • 正文 我和宋清朗相戀三年品擎,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了埋合。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,690評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡萄传,死狀恐怖甚颂,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情秀菱,我是刑警寧澤振诬,帶...
    沈念sama閱讀 35,411評(píng)論 5 343
  • 正文 年R本政府宣布,位于F島的核電站衍菱,受9級(jí)特大地震影響赶么,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜梦碗,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,004評(píng)論 3 325
  • 文/蒙蒙 一禽绪、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧洪规,春花似錦印屁、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,659評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至念赶,卻和暖如春础钠,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背叉谜。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,812評(píng)論 1 268
  • 我被黑心中介騙來(lái)泰國(guó)打工旗吁, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人停局。 一個(gè)月前我還...
    沈念sama閱讀 47,693評(píng)論 2 368
  • 正文 我出身青樓很钓,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親董栽。 傳聞我的和親對(duì)象是個(gè)殘疾皇子码倦,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,577評(píng)論 2 353

推薦閱讀更多精彩內(nèi)容