Spring PropertyOverrideConfigurerの構成
SpringのプロファイルはアプリケーションContext.xmlですが、一般的にアプリケーションContextには定数パラメータが配置されていません.xmlではなく、データベース接続情報などの個別のpropertiesファイルに配置されます.applicationContext.xml外部のpropertiesファイルを構成する場合は、PropertyOverrideConfigurerオブジェクトを必要とし、propertiesファイルの場所を指定し、プロパティを指定します.
以下はmysqlのプロファイル、jdbc.properties:
次はアプリケーションContext.xmlでpropertiesファイルを構成するには、次の手順に従います.
プログラムが実行されると、PropertyConfigurerオブジェクトはjdbcを探す.propertiesファイルで、対応する変数を探します.次はテストコード、SpringTestです.java
以下はmysqlのプロファイル、jdbc.properties:
#
jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3306/test?characterEncoding=UTF-8
jdbc.username=root
jdbc.password=toor
次はアプリケーションContext.xmlで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:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"
default-autowire="byName">
<!-- -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="${jdbc.driverClassName}"></property>
<property name="url" value="${jdbc.url}"></property>
<property name="username" value="${jdbc.username}"></property>
<property name="password" value="${jdbc.password}"></property>
</bean>
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:jdbc.properties"></property>
</bean>
</beans>
プログラムが実行されると、PropertyConfigurerオブジェクトはjdbcを探す.propertiesファイルで、対応する変数を探します.次はテストコード、SpringTestです.java
package com.yeetrack.mavenSpring;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import javax.sql.DataSource;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SpringTest
{
public static void main(String[] args)
{
// ApplicationContext
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
// Spring ProxyFactoryBean ServiceImpl
IService hello = (IService) context.getBean("service");
hello.sayHello("Good Day!");
DataSource data = (DataSource) context.getBean("dataSource");
Connection conn = null;
ResultSet result = null;
try
{
conn = data.getConnection();
Statement stat = conn.createStatement();
String sql = "select * from user";
result = stat.executeQuery(sql);
while(result.next())
{
System.out.print(result.getString(1)+" ");
System.out.print(result.getString(2)+" ");
System.out.println(result.getString(3));
}
result.close();
conn.close();
} catch (SQLException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}