6、Spring使用外部属性文件
程序员文章站
2022-05-24 15:30:32
...
导入才p3p0和数据连接的jar包
beans-properties.xml配置文件:
<!-- 导入属性文件 -->
<context:property-placeholder location="classpath:db.properties"/>
<!-- 使用外部化属性文件属性 -->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="user" value="${jdbc.user}"></property>
<property name="password" value="${jdbc.password}"></property>
<property name="driverClass" value="${jdbc.driverClass}"></property>
<property name="jdbcUrl" value="${jdbc.jdbcUrl}"></property>
</bean>
db.properties配置文件:
jdbc.user=root
jdbc.password=localhost123
jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.jdbcUrl=jdbc:mysql:///javaweb
jdbc.initPoolSize=5
jdbc.maxPoolSize=10
测试类:
public class Main {
public static void main(String[] args) throws SQLException {
ApplicationContext ctx=new ClassPathXmlApplicationContext("beans-properties.xml");
DataSource dataSource=(DataSource) ctx.getBean("dataSource");
System.out.println(dataSource.getConnection());
}
运行结果
上一篇: CentOS7安装jdk
下一篇: 精子的三十种死法