欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用SSM框架开发applicationContext.xml和jdbc.properties配置文件的使用

程序员文章站 2022-07-10 10:41:40
...

本项目是使用maven搭建的,不过即使不是使用maven搭建,配置使用也相差不大。

项目的目录结构如下:

使用SSM框架开发applicationContext.xml和jdbc.properties配置文件的使用

其中applicationContext.xml文件内容如下(只包含配置数据源部分):

关键是使用"${key-name}“进行引用的,key-name是properties文件中的键名。

<?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:tx="http://www.springframework.org/schema/tx"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                        http://www.springframework.org/schema/beans/spring-beans-3.1.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <!--引入外部配置文件(properties等文件-->
    <context:property-placeholder location="classpath:jdbc.properties"/>

    <!-- 配置数据源 -->
    <bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource">
        <!--数据库连接驱动-->
        <property name="driverClassName" value="${driver}"/>
        <!--数据库连接URL-->
        <property name="url" value="${url}"/>
        <!--数据库登录用户名-->
        <property name="username" value="${username}"/>
        <!--数据库登录密码-->
        <property name="password" value="${password}"/>
        <!-- 初始化连接数 -->
        <property name="initialSize" value="${initialSize}"/>
        <!-- 最大连接数 -->
        <property name="maxTotal" value="${maxActive}"/>
        <!-- 最大空闲连接数 -->
        <property name="maxIdle" value="${maxIdle}"/>
    </bean>

</beans>

jdbc.properties文件内容如下:

# 数据库驱动
driver=com.mysql.jdbc.Driver
# 连接URL
url=jdbc:mysql://localhost:3306/db_springmvc_demo?characterEncoding=utf8&useSSL=false
# 数据库的用户名
username=root
# 数据库的密码
password=admin
# 定义初始连接数
initialSize=0
# 定义最大连接数
maxActive=20
# 定义最大空闲
maxIdle=20
# 定义最小空闲
minIdle=1
# 定义最长等待时间
maxWait=60000

如果配置成功,可以发现它们不是灰色的,如果没有配置成功如minIdle和maxWait都是灰色的。

使用SSM框架开发applicationContext.xml和jdbc.properties配置文件的使用

使用SSM框架开发applicationContext.xml和jdbc.properties配置文件的使用