spring 引入外部資原始檔
阿新 • • 發佈:2018-12-15
開發過程中,經常使用到*.properties資原始檔,其實可以把它們放在專案之外的某個地方,方便統一管理,尤其是很多專案的時候。
貼程式碼:
springmvc-config.xml
<!--1、在spring配置檔案中加入下面程式碼-->
<context:property-placeholder file-encoding="utf-8"
location="file:E:/test/test.properties"/>
2、再新建一個類,專門存放這些屬性
AppProperties.java
(如果不使用@Data @ToString,需要自行生成getter setter)
package com.zcx.resource;
import lombok.Data;
import lombok.ToString;
import org.springframework.beans.factory.annotation.Value;
@Data
@ToString
public class AppProperties {
@Value("${my.name}")
private String name;
}
springmvc-config.xml
<!--3、回到spring配置檔案,定義剛才的類-->
<bean id ="appProperties" class="com.zcx.resource.AppProperties"/>
然後就可以使用了
MainController.java
// 4、引入
@Resource(name = "appProperties")
private AppProperties appProperties;
// 5、使用
@RequestMapping("/printName")
public void printName() {
System.out.println(appProperties.getName());
}