1. 程式人生 > >Java中spring讀取配置檔案的幾種方法

Java中spring讀取配置檔案的幾種方法

    在現實工作中,我們常常需要儲存一些系統配置資訊,大家一般都會選擇配置檔案來完成,本文根據筆者工作中用到的讀取配置檔案的方法小小總結一下,主要敘述的是spring讀取配置檔案的方法。

    一、讀取xml配置檔案

    (一)新建一個java bean

package chb.demo.vo;

public class HelloBean {

 private String helloWorld;

 public String getHelloWorld() {

  return helloWorld;

 }

 public void setHelloWorld(String helloWorld) {

  this.helloWorld = helloWorld;

 }

}

    (二)構造一個配置檔案

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd" >

<beans>

 <bean id="helloBean" class="chb.demo.vo.HelloBean">

  <property name="helloWorld">

  <value>Hello!chb!</value>

  </property>

 </bean>

</beans>

    (三)讀取xml檔案

    1.利用ClassPathXmlApplicationContext

ApplicationContext context = new ClassPathXmlApplicationContext("beanConfig.xml");

//這種用法不夠靈活,不建議使用。

 HelloBean helloBean = (HelloBean)context.getBean("helloBean");

 System.out.println(helloBean.getHelloWorld());

    2.利用FileSystemResource讀取

Resource rs = new FileSystemResource("D:/software/tomcat/webapps/springWebDemo/WEB-INF/classes/beanConfig.xml");

  BeanFactory factory = new XmlBeanFactory(rs);

  HelloBean helloBean = (HelloBean)factory.getBean("helloBean");

  System.out.println(helloBean.getHelloWorld());

    值得注意的是:利用FileSystemResource,則配置檔案必須放在project直接目錄下,或者寫明絕對路徑,否則就會丟擲找不到檔案的異常。

    二、讀取properties配置檔案

    這裡介紹兩種技術:利用spring讀取properties 檔案和利用java.util.Properties讀取

    (一)利用spring讀取properties 檔案

    我們還利用上面的HelloBean.java檔案,構造如下beanConfig.properties檔案:

helloBean.class=chb.demo.vo.HelloBean

helloBean.helloWorld=Hello!chb!

    屬性檔案中的"helloBean"名稱即是Bean的別名設定,.class用於指定類來源。

    然後利用org.springframework.beans.factory.support.PropertiesBeanDefinitionReader來讀取屬性檔案

  BeanDefinitionRegistry reg = new DefaultListableBeanFactory();

  PropertiesBeanDefinitionReader reader = new PropertiesBeanDefinitionReader(reg);

  reader.loadBeanDefinitions(new ClassPathResource("beanConfig.properties"));

  BeanFactory factory = (BeanFactory)reg;

  HelloBean helloBean = (HelloBean)factory.getBean("helloBean");

  System.out.println(helloBean.getHelloWorld());

    (二)利用java.util.Properties讀取屬性檔案

    比如,我們構造一個ipConfig.properties來儲存伺服器ip地址和埠,如:

ip=192.168.0.1

port=8080

    則,我們可以用如下程式來獲得伺服器配置資訊:

  InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("ipConfig.properties");

  Properties p = new Properties();

  try {

  p.load(inputStream);

  } catch (IOException e1) {

  e1.printStackTrace();

  }

System.out.println("ip:"+p.getProperty("ip")+",port:"+p.getProperty("port"));

三 用介面類WebApplicationContext來取。

        private WebApplicationContext ctx;

        ctx=WebApplicationContextUtils.getRequiredWebApplicationContext(
            this.getServletContext());
        ctx = WebApplicationContextUtils.getWebApplicationContext(
            this.getServletContext());

      JdbcTemplate jdbcTemplate = (JdbcTemplate)ctx.getBean("jdbcTemplate");

其中,jdbcTemplate為spring配置檔案中的一個bean的id值。

這種用法比較靈活,spring配置檔案在web中配置啟動後,該類會自動去找對應的bean,而不用再去指定配置檔案的具體位置。