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
问题:

  1. 系统的dbcp创建过程
  2. dbcp的配置文档创建为xml时,如何使用
  3. properties创建使用
    4.其他技术

ps:还在探索中。。。。。。


java中 synchronized 的使用,确保异步执行某一段代码
http://www.cnblogs.com/wayne173/p/4121516.html

创建数据源

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: 数据库连接工具类
* @author: Jony
* @date: 2014-10-4 下午6:04:36
*
*/ 
public class JdbcUtils_DBCP {
    /**
     * 在java中,编写数据库连接池需实现java.sql.DataSource接口,每一种数据库连接池都是DataSource接口的实现
     * DBCP连接池就是java.sql.DataSource接口的一个具体实现
     */
    private static DataSource ds = null;
    //在静态代码块中创建数据库连接池
    static{
        try{
            //加载dbcpconfig.properties配置文件
            InputStream in = JdbcUtils_DBCP.class.getClassLoader().getResourceAsStream("dbcpconfig.properties");
            Properties prop = new Properties();
            prop.load(in);
            //创建数据源
            ds = BasicDataSourceFactory.createDataSource(prop);
        }catch (Exception e) {
            throw new ExceptionInInitializerError(e);
        }
    }
    
    /**
    * @Method: getConnection
    * @Description: 从数据源中获取数据库连接
    * @Anthor:孤傲苍狼
    * @return Connection
    * @throws SQLException
    */ 
    public static Connection getConnection() throws SQLException{
        //从数据源中获取数据库连接
        return ds.getConnection();
    }
    
    /**
    * @Method: release
    * @Description: 释放资源,
    * 释放的资源包括Connection数据库连接对象,负责执行SQL命令的Statement对象,存储查询结果的ResultSet对象
    * @Anthor:孤傲苍狼
    *
    * @param conn
    * @param st
    * @param rs
    */ 
    public static void release(Connection conn,Statement st,ResultSet rs){
        if(rs!=null){
            try{
                //关闭存储查询结果的ResultSet对象
                rs.close();
            }catch (Exception e) {
                e.printStackTrace();
            }
            rs = null;
        }
        if(st!=null){
            try{
                //关闭负责执行SQL命令的Statement对象
                st.close();
            }catch (Exception e) {
                e.printStackTrace();
            }
        }
        
        if(conn!=null){
            try{
                //将Connection连接对象还给数据库连接池
                conn.close();
            }catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
}

创建连接的类

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 {
    
    //注册完后,获取相关信息,用于返回客户端
    public Integer roomIdInteger;
    public RcuInfo rcuInfo;
    
    //记录注册过程中的错误信息,内容不能有特殊字符
    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) {
        //记录状态
        boolean isSuccess = false;
        
        //System.out.println("userInfoCheck");
        Connection con = null;
        Statement sm = null;
        ResultSet rs = null;
        try{
            //获取数据库连接
            con = JdbcUtils_DBCP.getConnection();
            sm = con.createStatement(); 
            
            // 查询操作
            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){
        //记录状态
        boolean isSuccess = false;
        
        //System.out.println("addClientInfoToDatabase");
        Connection conn = null;
        Statement sm = null;
        ResultSet rs = null;
        try{
            //获取数据库连接
            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不存在错误
                      
        }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

#连接设置
driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver
url=jdbc:sqlserver://localhost:1433;databaseName=IRCSData
username=sa
password=123

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

#最大连接数量
maxActive=50

#<!-- 最大空闲连接 -->
maxIdle=20

#<!-- 最小空闲连接 -->
minIdle=5

#<!-- 超时等待时间以毫秒为单位 6000毫秒/1000等于60秒 -->
maxWait=60000


#JDBC驱动建立连接时附带的连接属性属性的格式必须为这样:[属性名=property;] 
#注意:"user" 与 "password" 两个属性会被明确地传递,因此这里不需要包含他们。
connectionProperties=useUnicode=true;characterEncoding=UTF8

#指定由连接池所创建的连接的自动提交(auto-commit)状态。
defaultAutoCommit=true

#driver default 指定由连接池所创建的连接的只读(read-only)状态。
#如果没有设置该值,则“setReadOnly”方法将不被调用。(某些驱动并不支持只读模式,如:Informix)
defaultReadOnly=

#driver default 指定由连接池所创建的连接的事务级别(TransactionIsolation)。
#可用值为下列之一:(详情可见javadoc。)NONE,READ_UNCOMMITTED, READ_COMMITTED, REPEATABLE_READ, SERIALIZABLE
defaultTransactionIsolation=READ_UNCOMMITTED

连接类创建对象,使用

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");
        
        //判断请求参数是否完整
        if (userId == null|| userPwd == null||clientIp == null||clientPort == null) {
            requestParamenterError(response);
            System.out.println("Request paramenter error!");
            return;
        }
        
        //注册功能
        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
    }

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,772评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,458评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,610评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,640评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,657评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,590评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,962评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,631评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,870评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,611评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,704评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,386评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,969评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,944评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,179评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,742评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,440评论 2 342

推荐阅读更多精彩内容