推荐开发环境: JDK+ Tomcat+Mysql+Myeclipse(按照安装顺序排列)。
先安装好上面的开发环境并进行相关配置,最主要的是path路径要添加。然后进行下面的操作。
数据库连接池连接方法:
先要下载好数据库连接驱动:mysql-connector-java-5.1.22-bin 放在tomcat的lib文件夹下,并在然后根据以下两种方法加以配置:
1、全局方法:
在tomcat的conf目录下打开context.xml加入代码:ConnectionPool为连接池名字,可随便取,但是要对应;study为数据库名
<Context>
<Resource
name = "jdbc/ConnectionPool"
auth = "Container"
type = "javax.sql.DataSource"
password = "123456"
driverClassName = "com.mysql.jdbc.Driver"
maxIdle = "2"
maxWait = "5000"
username = "root"
url = "jdbc:MYSQL://localhost:3306/study?characterEncoding=GBK"
maxActive = "4"/>
<WatchedResource>Web-INF/web.xml</WatchedResource>
</Context>
然后在工程的web.xml文件中加入代码:
<resource-ref>
<description>GuestBook</description>
<res-ref-name>jdbc/ConnectionPool</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
2、对某一个Web项目的方法:
在META-INF文件夹下context.xml文件中加入代码:
<Context>
<Resource
name = "jdbc/ConnectionPool"
auth = "Container"
type = "javax.sql.DataSource"
password = "123456"
driverClassName = "com.mysql.jdbc.Driver"
maxIdle = "2"
maxWait = "5000"
username = "root"
url = "jdbc:MYSQL://localhost:3306/study?characterEncoding=GBK"
maxActive = "4"/>
<WatchedResource>Web-INF/web.xml</WatchedResource>
</Context>
根据以上两种方法就可在程序中创建数据源对象:(下面代码添加到工程文件中)
Context initCtx = new InitialContext();
Context ctx = (Context) initCtx.lookup("java:comp/env");
//获取连接池对象
DataSource ds =(DataSource)ctx.lookup("jdbc/ConnectionPool");
//创建连接
Connection conn = ds.getConnection();
Statement stmt = conn.createStatement();