eclipse3.2.2 + MyEclipse5.5 + Tomcat5.5.27 配置数据库连接池
程序员文章站
2022-03-06 15:29:33
now begin: step 1: 建立数据库连接池. 1. 从tomcat的主页上下载tomcat5.5.27,推荐绿色版(zip),不用为重做系统而发愁. 2. 下载...
now begin:
step 1:
建立数据库连接池.
1.
从tomcat的主页上下载tomcat5.5.27,推荐绿色版(zip),不用为重做系统而发愁.
2.
下载tomcat5.5.27的admin包,解压缩后覆盖tomcat5.5.27的根目录.
3.
在tomcat5.5.27的根目录下conf文件夹里的tomcat-users.xml里, </tomcat-users>之前加上一行
<user username="admin" password="admin" roles="admin,manager"/>
既admin包的登陆账号,用户名admin, 密码admin.
4.
用ie登陆http://localhost:8080/admin 进入tomcat的admin页面. (注意要写上http://,不然的话,可能会出现错误)
5.
左面选择resources下的data source.进入后在右上角的data source actions 下拉菜单中选择create new data source.然后页面将自动跳转到注册页面.
6.
jndi name: jdbc/mysql (自订,连接池的id, 唯一.)
data source url: jdbc:mysql://localhost:3306/*** (***为数据库名)
jdbc driver class: com.mysql.jdbc.driver (jdbc驱动包里的driver类)
user name: root(数据库账号)
password: ********(数据库密码)
max. active connections: 4
max. idle connections: 2
max. wait for connection: 500
validation query: (可以不写)
7.
然后千万不要忘记保存. 先点右下角的save 再点右上角的commit changes
step 2:
配置context.xml
1.
找到tomcat根目录下的conf文件夹里的context.xml
2.
在</context>前加上一行
<resourcelink name="jdbc/mysql" global="jdbc/mysql" type="javax.sql.datasourcer"/>
step 3:
配制web.xml
1.在</web-app>前加上数行
<resource-ref>
<description>db connection</description>
<res-ref-name>jdbc/mysql</res-ref-name>
<res-type>javax.sql.datasource</res-type>
<res-auth>container</res-auth>
</resource-ref>
end
step 1:
建立数据库连接池.
1.
从tomcat的主页上下载tomcat5.5.27,推荐绿色版(zip),不用为重做系统而发愁.
2.
下载tomcat5.5.27的admin包,解压缩后覆盖tomcat5.5.27的根目录.
3.
在tomcat5.5.27的根目录下conf文件夹里的tomcat-users.xml里, </tomcat-users>之前加上一行
<user username="admin" password="admin" roles="admin,manager"/>
既admin包的登陆账号,用户名admin, 密码admin.
4.
用ie登陆http://localhost:8080/admin 进入tomcat的admin页面. (注意要写上http://,不然的话,可能会出现错误)
5.
左面选择resources下的data source.进入后在右上角的data source actions 下拉菜单中选择create new data source.然后页面将自动跳转到注册页面.
6.
jndi name: jdbc/mysql (自订,连接池的id, 唯一.)
data source url: jdbc:mysql://localhost:3306/*** (***为数据库名)
jdbc driver class: com.mysql.jdbc.driver (jdbc驱动包里的driver类)
user name: root(数据库账号)
password: ********(数据库密码)
max. active connections: 4
max. idle connections: 2
max. wait for connection: 500
validation query: (可以不写)
7.
然后千万不要忘记保存. 先点右下角的save 再点右上角的commit changes
step 2:
配置context.xml
1.
找到tomcat根目录下的conf文件夹里的context.xml
2.
在</context>前加上一行
复制代码 代码如下:
<resourcelink name="jdbc/mysql" global="jdbc/mysql" type="javax.sql.datasourcer"/>
step 3:
配制web.xml
1.在</web-app>前加上数行
复制代码 代码如下:
<resource-ref>
<description>db connection</description>
<res-ref-name>jdbc/mysql</res-ref-name>
<res-type>javax.sql.datasource</res-type>
<res-auth>container</res-auth>
</resource-ref>
end
推荐阅读
-
.net数据库连接池配置技巧(默认值)
-
配置c3p0-config.xml数据库连接池,jdbcurl配置项报错Type The reference to entity "useUnicode" must end with the ';' delimiter.
-
Tomeat6.0 连接池数据库配置
-
在IDEA中用jdbc技术通过配置文件连接mysql数据库连接池
-
Tomcat下配置MySQL数据库连接池
-
SpringBoot集成mybatis(配置通用mapper)并且使用druid作为数据库连接池
-
dbcp 数据库连接池配置及对数据库的增、删、改、查 jdbcjavadbcp
-
【Do家】Druid数据库连接池配置参数样例 Druidmysqlpoosize
-
数据库连接池druid wallfilter配置
-
Tomcat 5.5 数据库连接池配置