(一)新建一個(gè)java beanpackage chb.demo.vo;public class HelloBean ...{private String helloWorld;public String getHelloWorld() ...{return helloWorld;}public void setHelloWorld(String helloWorld) ...{this.helloWorld = helloWorld;}}(二)構造一個(gè)配置文件
<?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.利用ClassPathXmlApplicationContextApplicationContext 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直接目錄下,或者寫(xiě)明絕對路徑,否則就會(huì )拋出找不到文件的異常
這里介紹兩種技術(shù):利用spring讀取properties 文件和利用java.util.Properties讀取(一)利用spring讀取properties 文件我們還利用上面的HelloBean.java文件,構造如下beanConfig.properties文件:helloBean.class=chb.demo.vo.HelloBean
helloBean.helloWorld=Hello!chb!屬性文件中的"helloBean"名稱(chēng)即是Bean的別名設定,.class用于指定類(lèi)來(lái)源。然后利用org.springframework.beans.factory.support.PropertiesBeanDefinitionReader來(lái)讀取屬性文件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讀取屬性文件比如,我們構造一個(gè)ipConfig.properties來(lái)保存服務(wù)器ip地址和端口,如:ip=192.168.0.1
port=8080則,我們可以用如下程序來(lái)獲得服務(wù)器配置信息: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"));本文只介紹了一些簡(jiǎn)單操作,不當之處希望大家多多指教
Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=1516911
聯(lián)系客服