本知识点解说如何在 SSM 中配置数据库连接池。连接池的成果要大量测试才可能看得出成果,本知识点次要是为了未来如果你要批改成连接池的时候,复制粘贴不便~
步骤 1: 先运行,看到成果,再学习
步骤 2: 模拟和排错
步骤 3: 基于分页进行
步骤 4: 批改 applicationContext.xml
步骤 5: 测试
步骤 1 : 先运行,看到成果,再学习
老规矩,先下载下载区 (点击进入) 的可运行我的项目,配置运行起来,确认可用之后,再学习做了哪些步骤以达到这样的成果。
步骤 2 : 模拟和排错
在确保可运行我的项目可能正确无误地运行之后,再严格照着教程的步骤,对代码模拟一遍。
模拟过程不免代码有出入,导致无奈失去冀望的运行后果,此时此刻通过比拟 正确答案 (可运行我的项目) 和本人的代码,来定位问题所在。
采纳这种形式,学习有成果,排错有效率,能够较为显著地晋升学习速度,跨过学习路上的各个槛。
举荐应用 diffmerge 软件,进行文件夹比拟。把你本人做的我的项目文件夹,和我的可运行我的项目文件夹进行比拟。
这个软件很牛逼的,能够晓得文件夹里哪两个文件不对,并且很显著地标记进去
这里提供了绿色装置和应用教程:diffmerge 下载和应用教程
步骤 3 : 基于分页进行
本知识点,基于分页进行。
步骤 4 : 批改 applicationContext.xml
正文掉 52-66 行的原有 datasource,新增 Druid 连接池
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:annotation-config />
<context:component-scan base-package="com.how2java.service" />
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">
<!-- 根本属性 url、user、password -->
<property name="url" value="jdbc:mysql://localhost:3306/how2java?characterEncoding=UTF-8" />
<property name="username" value="root" />
<property name="password" value="admin" />
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<!-- 配置初始化大小、最小、最大 -->
<property name="initialSize" value="3" />
<property name="minIdle" value="3" />
<property name="maxActive" value="20" />
<!-- 配置获取连贯期待超时的工夫 -->
<property name="maxWait" value="60000" />
<!-- 配置距离多久才进行一次检测,检测须要敞开的闲暇连贯,单位是毫秒 -->
<property name="timeBetweenEvictionRunsMillis" value="60000" />
<!-- 配置一个连贯在池中最小生存的工夫,单位是毫秒 -->
<property name="minEvictableIdleTimeMillis" value="300000" />
<property name="validationQuery" value="SELECT 1" />
<property name="testWhileIdle" value="true" />
<property name="testOnBorrow" value="false" />
<property name="testOnReturn" value="false" />
<!-- 关上 PSCache,并且指定每个连贯上 PSCache 的大小 -->
<property name="poolPreparedStatements" value="true" />
<property name="maxPoolPreparedStatementPerConnectionSize" value="20" />
</bean>
<!-- <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> -->
<!-- <property name="driverClassName"> -->
<!-- <value>com.mysql.jdbc.Driver</value> -->
<!-- </property> -->
<!-- <property name="url"> -->
<!-- <value>jdbc:mysql://localhost:3306/how2java?characterEncoding=UTF-8</value> -->
<!-- </property> -->
<!-- <property name="username"> -->
<!-- <value>root</value> -->
<!-- </property> -->
<!-- <property name="password"> -->
<!-- <value>admin</value> -->
<!-- </property> -->
<!-- </bean> -->
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="typeAliasesPackage" value="com.how2java.pojo" />
<property name="dataSource" ref="dataSource"/>
<property name="mapperLocations" value="classpath:com/how2java/mapper/*.xml"/>
</bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.how2java.mapper"/>
</bean>
</beans>
步骤 5 : 测试
拜访页面看到如图所示成果
http://127.0.0.1:8080/ssm/listCategory
连接池要大量测试才可能看得出成果,这个测试仅仅示意能够像以前一样失常工作。
本知识点次要是为了未来如果你要批改成 c3p0 的时候,复制粘贴不便~
更多内容,点击理解:https://how2j.cn/k/ssm/ssm-c3p0/1142.html