SpringBoot如何獲取application.properties中自定義的值
目錄結(jié)構(gòu):

pom文件:
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.5.4</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.example</groupId> <artifactId>i18nSpringbootDemo-1</artifactId> <version>0.0.1-SNAPSHOT</version> <name>i18nSpringbootDemo-1</name> <description>Demo project for Spring Boot</description> <properties> <java.version>11</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <!-- 導(dǎo)入配置文件處理器,配置文件進(jìn)行綁定就會提示 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <!--校驗(yàn)依賴--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> <packaging>war</packaging> </project>
application.properties:
test.user.id=12 #也可以寫成 test.user.user-name=zhangsan test.user.userName=zhansan #也可以寫成 test.user.user-password=XXX test.user.userPassword=PWD123 #也可以寫成 test.user.la-big-decimal=XXX test.user.laBigDecimal=138.3 test.user.maps.key1=V1 test.user.maps.key2=123 test.user.lists=a12,a13,sdf test.user.department.dep-code=dep001 test.user.department.dep-name=depName001
Department類:
package com.example.demo.obj;
public class Department {
private String depCode;
private String depName;
/**
* @return depCode
*/
public String getDepCode() {
return depCode;
}
/**
* @param depCode セットする depCode
*/
public void setDepCode(String depCode) {
this.depCode = depCode;
}
/**
* @return depName
*/
public String getDepName() {
return depName;
}
/**
* @param depName セットする depName
*/
public void setDepName(String depName) {
this.depName = depName;
}
@Override
public String toString() {
return "Department [depCode=" + depCode + ", depName=" + depName + "]";
}
}
User類:
package com.example.demo.obj;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
import javax.validation.constraints.Email;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
import org.springframework.validation.annotation.Validated;
/*
* 將配置文件的每一個(gè)屬性值,映射到這個(gè)組件中:
* ①@ConfigurationProperties:告訴SpringBoot將本類中的所有屬性和配置文件中相關(guān)的配置進(jìn)行綁定;
* prefix = "test.user":將配置文件中前綴為test.user下面的所有屬性進(jìn)行一一映射
* 只有這個(gè)組件是容器中的組件,才能提供@ConfigurationProperties的功能,所以要加@Component
*
* ②@Value("${key}")從環(huán)境變量、配置文件中獲取值
* @Value("#{SpEl}")表達(dá)式
*
* @ConfigurationProperties與@Value的區(qū)別:
* @ConfigurationProperties支持松散語法,JSR303數(shù)據(jù)校驗(yàn),復(fù)雜類型封裝,不支持SpEL
* @Value支持SpEL,不支持松散語法,JSR303數(shù)據(jù)校驗(yàn),復(fù)雜類型封裝
* 如果說,我們在某個(gè)業(yè)務(wù)邏輯中需要獲取一下配置文件中的某項(xiàng)值,可以用@Value
* 如果說,我們專門編寫了一個(gè)javaBean去和配置文件進(jìn)行映射,我們直接使用@ConfigurationProperties
*/
@Component
@ConfigurationProperties(prefix = "test.user")
@Validated
public class User {
//@Value("#{10*2}")
private Integer id;
//@Email userName必須輸入郵箱格式的值,要不然報(bào)錯(cuò)
//@Value("${test.user.userName}")
private String userName;
//@Value("${test.user.userPassword}")
private String userPassword;
//@Value("${test.user.laBigDecimal}")
private BigDecimal laBigDecimal;
//@Value("${test.user.maps}") X 不行會報(bào)錯(cuò)
private Map<String, Object> maps;
//@Value("${test.user.lists}")
private List<Object> lists;
//@Value("${test.user.department}") X 不行會報(bào)錯(cuò)
private Department department;
/**
* @return id
*/
public Integer getId() {
return id;
}
/**
* @param id セットする id
*/
public void setId(Integer id) {
this.id = id;
}
/**
* @return userName
*/
public String getUserName() {
return userName;
}
/**
* @param userName セットする userName
*/
public void setUserName(String userName) {
this.userName = userName;
}
/**
* @return userPassword
*/
public String getUserPassword() {
return userPassword;
}
/**
* @param userPassword セットする userPassword
*/
public void setUserPassword(String userPassword) {
this.userPassword = userPassword;
}
/**
* @return laBigDecimal
*/
public BigDecimal getLaBigDecimal() {
return laBigDecimal;
}
/**
* @param laBigDecimal セットする laBigDecimal
*/
public void setLaBigDecimal(BigDecimal laBigDecimal) {
this.laBigDecimal = laBigDecimal;
}
/**
* @return maps
*/
public Map<String, Object> getMaps() {
return maps;
}
/**
* @param maps セットする maps
*/
public void setMaps(Map<String, Object> maps) {
this.maps = maps;
}
/**
* @return lists
*/
public List<Object> getLists() {
return lists;
}
/**
* @param lists セットする lists
*/
public void setLists(List<Object> lists) {
this.lists = lists;
}
/**
* @return department
*/
public Department getDepartment() {
return department;
}
/**
* @param department セットする department
*/
public void setDepartment(Department department) {
this.department = department;
}
@Override
public String toString() {
return "User [id=" + id + ", userName=" + userName + ", userPassword=" + userPassword + ", laBigDecimal="
+ laBigDecimal + ", maps=" + maps + ", lists=" + lists + ", department=" + department + "]";
}
}
I18nSpringbootDemo1Application類:
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* 應(yīng)用啟動類
*
*/
@SpringBootApplication
public class I18nSpringbootDemo1Application {
public static void main(String[] args) {
SpringApplication.run(I18nSpringbootDemo1Application.class, args);
}
}
單元測試類I18nSpringbootDemo1ApplicationTests:
package com.example.demo;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import com.example.demo.obj.User;
@SpringBootTest
class I18nSpringbootDemo1ApplicationTests {
@Autowired
User user;
@Test
void contextLoads() {
System.out.println(user.toString());
}
}
啟動:

結(jié)果:
User [id=12, userName=zhansan, userPassword=PWD123, laBigDecimal=138.3, maps={key1=V1, key2=123}, lists=[a12, a13, sdf], department=Department [depCode=dep001, depName=depName001]]

到此這篇關(guān)于SpringBoot獲取application.properties中的自定義的值的文章就介紹到這了,更多相關(guān)SpringBoot獲取自定義值內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Spring 處理 HTTP 請求參數(shù)注解的操作方法
這篇文章主要介紹了Spring 處理 HTTP 請求參數(shù)注解的操作方法,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),感興趣的朋友參考下吧2024-04-04
SpringBoot如何打印mybatis的執(zhí)行sql問題
這篇文章主要介紹了SpringBoot如何打印mybatis的執(zhí)行sql問題,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-03-03
Mapstruct對象插入數(shù)據(jù)庫某個(gè)字段總是為空的bug詳解
這篇文章主要為大家介紹了在一次需求開發(fā)Mapstruct中對象插入數(shù)據(jù)庫某個(gè)字段總是為空的bug問題詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-07-07
Java利用Socket類實(shí)現(xiàn)TCP通信程序
TCP通信能實(shí)現(xiàn)兩臺計(jì)算機(jī)之間的數(shù)據(jù)交互,通信的兩端,要嚴(yán)格區(qū)分為客戶端與服務(wù)端,下面我們就來看看Java如何利用Socket類實(shí)現(xiàn)TCP通信程序吧2024-02-02
如何修改HttpServletRequest中header中的信息
這篇文章主要介紹了如何修改HttpServletRequest中header中的信息,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-02-02
Spring Boot 實(shí)現(xiàn)圖片上傳并回顯功能
本篇文章給大家分享Spring Boot 實(shí)現(xiàn)圖片上傳并回顯功能,文中通過實(shí)例代碼給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友參考下吧2021-07-07

