本文主要是介绍Spring配置文件中jdbc:initialize-database标签应用以及PropertyPlaceholderConfigurer配置的应用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、在Spring配置文件中配置PropertyPlaceholderConfigurer
1、在Spring中,使用PropertyPlaceholderConfigurer可以在XML配置文件中加入外部属性文件,当然也可以指定外部文件的编码,如:
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><!--指明引入配置文件的位置,其中classpath为src目录下的写法--><property name="location"><value>classpath:database/jdbc.properties</value></property><!--指定配置文件使用的编码方式--><property name="fileEncoding"><value>UTF-8</value></property></bean>
2、上面的例子为引入spring中的单个配置文件,也可以引入多个配置文件,如:
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><!--指定多个引入spring中的文件的位置--><property name="locations"><list><value>/WEB-INF/mail.properties</value> <value>classpath: conf/sqlmap/jdbc.properties</value>//注意这两种value值的写法</list></property><!--指定导入文件的编码方式--><property name="fileEncoding"><value>UTF-8</value></property>
</bean>
3、当不同的配置文件分散在不同的工程下,加载不同的配置属性文件有不同的先后顺序时,可以按如下配置:
<bean id="propertyConfigurerForProject1" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><!--order指定加载文件的顺序--><property name="order" value="1" /><property name="ignoreUnresolvablePlaceholders" value="true" /><property name="location"><value>classpath:/spring/include/dbQuery.properties</value></property>
</bean><bean id="propertyConfigurerForProject2" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><property name="order" value="2" /><!--ignoreUnresolvablePlaceholders设置为true,表示忽略不可解析的导入的文件;当同时导入多个属性文件时,最好把该属性设置为true,忽略不能解析的文件;否则设置false时,当遇到不能解析的文件是,会报错。--><property name="ignoreUnresolvablePlaceholders" value="true" /><property name="locations"><list><value>classpath:/spring/include/jdbc-parms.properties</value><value>classpath:/spring/include/base-config.properties</value></list></property>
</bean>
二、spring配置文件中jdbc:initialize-database标签的使用
在Spring的配置文件若想使用<jdbc:initialize-database>
标签,先导入jdbc的约束文件
xsi:schemaLocation="http://www.springframework.org/schema/jdbc
http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd"
导入约束文件后就可以使用jdbc的标签了,例如:
<!--data-source指定引入的数据源配置;-->
<jdbc:initialize-database data-source="dataSource" ignore-failures="NONE" enabled="true"><jdbc:script encoding="utf-8" location="/WEB-INF/db-init.sql"/>
</jdbc:initialize-database>
<jdbc:initialize-database>
这个标签的作用是在工程启动时,去执行一些sql,也就是初始化数据库。比如向数据库中建立一些表及插入一些初始数据等。这些sql的路径需要在其子标签<jdbc:script>
中去指定。下面介绍下<jdbc:initialize-database>
标签中属性的应用:
1、dataSource表明要引一个配置好的数据源。
2、ignore-failures有三个值:NONE,DROPS,ALL,设置为NONE时,不忽略任何错误,也就是说,当sql执行报错时服务启动终止。设置为DROPS时,忽略删除错误,如当sql中有一个删除表drop table d_area的sql,而d_area表不存在,此时这个错误会被忽略。设置为ALL时,忽略任何错误。
3、enabled是用来表明初始化数据库是否执行。这个很有用,一般初始化一次就够了,第二次以后就没必要了,所以第一次启动后,设置为true,以后启动的时候设置为false就可以了。除了特殊情况。这个enabled的值是一个boolean值。设置该属性有三种方法:
- 只写写enabled=”true”或者enabled=”false”,就像上面的例子一样;
- 先用上面的PropertyPlaceholderConfigurer引入属性文件,然后根据引入文件中的某个属性值来设置enabled属性。例如:
首先导入属性文件
<bean id="propertyPlaceholder" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><property name="locations"><list><value>WEB-INF/db.properties</value></list></property>
</bean>
然后在enabled中引用属性文件中的键值对
<jdbc:initialize-database data-source="dataSource" ignore-failures="NONE" enabled="${jdbc.initializedatabase}"><jdbc:script encoding="utf-8" location="/WEB-INF/db-init.sql"/>
</jdbc:initialize-database>
- 设置enabled=”#{systemProperties.INITIALIZE_DATABASE}”,这样设置后,会到你所设置的dataSource中去找property名字为systemProperties.INITIALIZE_DATABASE的值或prop key为systemProperties.INITIALIZE_DATABASE的值。
注意:这个标签必需要至少包含一个,这个标签是来指定你要初始化数据库的sql的路径。如:location=”/WEB-INF/db-init.sql”/;location=”classpath:com/sql/db-init.sql”。encoding是指明字符集
三、jdbc:initialize-database标签和PropertyPlaceholderConfigurer的配合使用
例如我们要在spring的application.xml配置文件中配置数据源以及工程启动是,初始化数据库的行为。
准配工作,首先在工程的根目录下的有一个database目录,在database目录下创建数据库的属性文件jdbc.properties,内容为:
jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost/mysqldb?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=round;
jdbc.username=root
jdbc.password=123456
在database目录下创建sql的属性文件sql.properties,期内容为:
jdbc.initializedatabase="true"
然后在application.xml中配置如下:
<!--1、首先导入外部属性文件jdbc.properties-->
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><property name="location"><value>classpath:database/jdbc.properties</value></property><property name="fileEncoding"><value>UTF-8</value></property>
</bean><!--2、从导入的属性文件中获取键值对,配置数据源-->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"><property name="driverClassName" value="${jdbc.driverClassName}" /><property name="url" value="${jdbc.url}" /><property name="username" value="${jdbc.username}" /><property name="password" value="${jdbc.password}" />
</bean><!--3、配置工程启动时,自动执行的数据库脚本-->
<jdbc:initialize-database data-source="dataSource" ignore-failures="NONE" enabled="${jdbc.initializedatabase}"><jdbc:script encoding="utf-8" location="/WEB-INF/db-init.sql"/>
</jdbc:initialize-database>
该文参考了
http://blog.csdn.net/yunsyz/article/details/17186503
http://blog.csdn.net/bestone0213/article/details/46633659
这篇关于Spring配置文件中jdbc:initialize-database标签应用以及PropertyPlaceholderConfigurer配置的应用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!