• tomcat7.0连接池配置


    tomcat7.04+MySql的连接

    1.首先在tomcat下的config/context.xml中的<context></context>中加入下面的resource

    <Resource name="jdbc/MySQLDB" auth="Container" type="javax.sql.DataSource"
            driverClassName="com.mysql.jdbc.Driver"
            maxActive="10" maxIdle="5" maxWait="10000"
            username="ruan" password="123456"
            url="jdbc:mysql://localhost:3306/blog" />
    

     2.在web.xml中的<web-app></web-app>中加入以下配置

            <resource-ref>
    		<description>DB Connection</description>
    		<res-ref-name>jdbc/MySQLDB</res-ref-name>
    		<res-type>javax.sql.DataSource</res-type>
    		<res-auth>Container</res-auth>
    	</resource-ref>
    

     3.程序中获取Connection

    public  Connetcion getConnection() {
    		try {
    			Context ctx = new InitialContext();
    			DataSource ds = (DataSource)ctx.lookup("java:/comp/env/jdbc/MySQLDB");
    			Connection conn = ds.getConnection();
    			System.out.println(conn);
                            return conn;
    		} catch (Exception e) {
    			e.printStackTrace();
    		}
                    return null;
    	}
    

     连接Sql数据库只需要更改 driverClassName/url

    SQL server2005
    driver="com.microsoft.sqlserver.jdbc.SQLServerDriver";
    url="jdbc:sqlserver://localhost:1433;databaseName=selectcourse";
    SQL server2000
    driver = "net.sourceforge.jtds.jdbc.Driver";
    url = "jdbc:jtds:sqlserver://127.0.0.1:1433/selectcourse";

    Oracle数据库
    driverClassName="oracle.jdbc.driver.oracledriver"
    url="jdbc:oracle:thin:@localhost:1521:yourdbname" 
  • 相关阅读:
    vm12序列号
    三星手机官方固件下载
    MSTP故障处理手册
    分享一个高清壁纸网站
    ThinkPad X220 完美黑苹果 Hackintosh OS X 10.11 El Capitan
    一句命令激活windows/office
    Win10+VMplayer12中U盘无法挂载解决
    记一次金士顿DT100 G3 32G修复
    飘雪代码2枚
    禁用安全模式
  • 原文地址:https://www.cnblogs.com/skiz/p/2672455.html
Copyright © 2020-2023  润新知