⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 userinfodemo2.java

📁 随书光盘:精通Sping 2.0 的随书源代码
💻 JAVA
字号:
package test;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;

/**
 * 演示PropertyPlaceholderConfigurer的使用
 * 
 * @author worldheart
 * 
 */
public class UserInfoDemo2 {

	protected final static Log log = LogFactory.getLog(UserInfoDemo2.class);

	public static void main(String[] args) {
		
		Resource res = new ClassPathResource("applicationContext2.xml");
		
		ConfigurableListableBeanFactory bf = new XmlBeanFactory(res);
		
		//构建userinfo.properties资源
		Resource prop = new ClassPathResource("userinfo.properties");
		
		//构建PropertyPlaceholderConfigurer
		PropertyPlaceholderConfigurer ppc = new PropertyPlaceholderConfigurer();
		//设置资源
		ppc.setLocation(prop);
		
		//手工调用postProcessBeanFactory
		ppc.postProcessBeanFactory(bf);

		IUserInfo ui = (IUserInfo) bf.getBean("userInfo");

		log.info(ui.getUserInfo());
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -