Spring中PropertiesLoaderUtils应用
Posted 盲目的拾荒者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring中PropertiesLoaderUtils应用相关的知识,希望对你有一定的参考价值。
FileSystemResource fileSystemResource =new FileSystemResource("D:/home/conf/mail.properties");
Properties properties = PropertiesLoaderUtils.loadProperties(fileSystemResource);
System.out.println("从文件系统读:"+properties);
ClassPathResource classPathResource = new ClassPathResource("jasperreports.properties");
Properties properties1 = PropertiesLoaderUtils.loadProperties(classPathResource);
System.out.println("从类路径读:"+properties1);
微信公众号
JAVA程序猿成长之路
分享资源,记录程序猿成长点滴。专注于Java,Spring,SpringBoot,SpringCloud,分布式,微服务。
以上是关于Spring中PropertiesLoaderUtils应用的主要内容,如果未能解决你的问题,请参考以下文章
Spring Day01 Spring 框架概述以及Spring中基于XML的IOC配置
学习笔记——Spring简介;Spring搭建步骤;Spring的特性;Spring中getBean三种方式;Spring中的标签