Springboot 讀取自定義pro文件注入static靜態(tài)變量方式
Springboot 讀取pro文件注入static靜態(tài)變量
mailConfig.properties
#服務(wù)器 mail.host=smtp.qq.com #端口號 mail.port=587 #郵箱賬號 mail.userName=hzy_daybreak_lc@foxmail.com #郵箱授權(quán)碼 mail.passWord=vxbkycyjkceocbdc #時(shí)間延遲 mail.timeout=25000 #發(fā)送人 mail.emailForm=hzy_daybreak_lc@foxmail.com #發(fā)件人 mail.personal=華夏衣裳 #主題 mail.subject=同袍用戶激活 #內(nèi)容模板 mail.html=您的郵箱驗(yàn)證碼為:
MailConfig.java
/*
* @(#)MailConfig.java Created on 2019年9月11日
* Copyright (c) 2019 ZDSoft Networks, Inc. All rights reserved.
* $Id$
*/
package com.hxyc.config.properties;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component;
/**
* @author huangzy
* @version $Revision: 1.0 $, $Date: 2019年9月11日 上午10:29:35 $
*/
@Configuration
@PropertySource(value = "classpath:config/mailConfig.properties", encoding = "UTF-8")
@Component
public class MailConfig {
public static String host;
public static Integer port;
public static String userName;
public static String passWord;
public static String emailForm;
public static String timeout;
public static String personal;
public static String html;
public static String subject;
/**
* @return Returns the host.
*/
public static String getHost() {
return host;
}
/**
* @param host
* The host to set.
*/
@Value("${mail.host}")
public void setHost(String host) {
MailConfig.host = host;
}
/**
* @return Returns the port.
*/
public static Integer getPort() {
return port;
}
/**
* @param port
* The port to set.
*/
@Value("${mail.port}")
public void setPort(Integer port) {
MailConfig.port = port;
}
/**
* @return Returns the userName.
*/
public static String getUserName() {
return userName;
}
/**
* @param userName
* The userName to set.
*/
@Value("${mail.userName}")
public void setUserName(String userName) {
MailConfig.userName = userName;
}
/**
* @return Returns the passWord.
*/
public static String getPassWord() {
return passWord;
}
/**
* @param passWord
* The passWord to set.
*/
@Value("${mail.passWord}")
public void setPassWord(String passWord) {
MailConfig.passWord = passWord;
}
/**
* @return Returns the emailForm.
*/
public static String getEmailForm() {
return emailForm;
}
/**
* @param emailForm
* The emailForm to set.
*/
@Value("${mail.emailForm}")
public void setEmailForm(String emailForm) {
MailConfig.emailForm = emailForm;
}
/**
* @return Returns the timeout.
*/
public static String getTimeout() {
return timeout;
}
/**
* @param timeout
* The timeout to set.
*/
@Value("${mail.timeout}")
public void setTimeout(String timeout) {
MailConfig.timeout = timeout;
}
/**
* @return Returns the personal.
*/
public static String getPersonal() {
return personal;
}
/**
* @param personal
* The personal to set.
*/
@Value("${mail.personal}")
public void setPersonal(String personal) {
MailConfig.personal = personal;
}
/**
* @return Returns the html.
*/
public static String getHtml() {
return html;
}
/**
* @param html
* The html to set.
*/
@Value("${mail.html}")
public void setHtml(String html) {
MailConfig.html = html;
}
/**
* @return Returns the subject.
*/
public static String getSubject() {
return subject;
}
/**
* @param subject
* The subject to set.
*/
@Value("${mail.subject}")
public void setSubject(String subject) {
MailConfig.subject = subject;
}
}
springboot靜態(tài)屬性注入的解決
第一種方式
通過springboot組件初始化生命周期進(jìn)行屬性(對象)賦值
@Component
public class DSHWechatApiUtil extends DSHBaseController {
@Autowired
private IThirdPartyAuthDao thirdPartyAuthDao;
private static IThirdPartyAuthDao staticThirdPartyAuthDao;
@PostConstruct
public void init() {
staticThirdPartyAuthDao = thirdPartyAuthDao;
}
public static JSONObject getAuthorizerToken(String componentAccessToken, String authorizerAppid, String authorizerRefreshToken) {
JSONObject returnObject = new JSONObject();
try {
if (DSHUtils.isEmpty(componentAccessToken)) {
componentAccessToken = staticThirdPartyAuthDao.selectWechatValue(DSHConstants.WECHAT_PARAMS.COMPONENT_ACCESS_TOKEN);
}
} catch (Exception e) {
e.printStackTrace();
}
return returnObject;
}
}
可以看到,當(dāng)DSHWechatApiUtil工具類組件進(jìn)行初始化時(shí),調(diào)用@PostConstruct注解標(biāo)注的方法,對靜態(tài)變量進(jìn)行了賦值。
第二種方式
通過@Value()注解
@Value()注解不會對靜態(tài)變量進(jìn)行屬性注入,通過第一種方式的思維,那么我們肯定得想個(gè)辦法,在這個(gè)組件初始化時(shí)也來賦值。
第一種方式肯定也是可以的,先寫一個(gè)屬性,然后通過@Value()注解對這個(gè)屬性進(jìn)行賦值,最后通過@PostConstruct注解方式賦值給靜態(tài)屬性。
這里我們要采用另一個(gè)方式,這里的方式是通過set方法來賦值。屬性是static修飾的,get方法也是static修飾的,但是set方法不能是static修飾,使用@Value()注解來修飾set方法。

這樣就能成功注入。
第三種方式
第三種方式和第二種差不多,
@ConfigurationProperties(prefix = ProjectConfig.PROJECT_PREFIX)
public class ProjectConfig {
public static final String PROJECT_PREFIX = "project";
/**
* 系統(tǒng)版本號
*/
private String version;
/**
* 項(xiàng)目名稱
*/
private String name;
/**
* 版權(quán)年份
*/
private String copyrightYear;
/**
* 實(shí)例演示開關(guān)
*/
private static boolean demoEnabled;
/**
* 獲取地址ip開關(guān)
*/
private static boolean addressEnabled;
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCopyrightYear() {
return copyrightYear;
}
public void setCopyrightYear(String copyrightYear) {
this.copyrightYear = copyrightYear;
}
public boolean isDemoEnabled() {
return demoEnabled;
}
public void setDemoEnabled(boolean demoEnabled) {
ProjectConfig.demoEnabled = demoEnabled;
}
public static boolean isAddressEnabled() {
return addressEnabled;
}
public void setAddressEnabled(boolean addressEnabled) {
ProjectConfig.addressEnabled = addressEnabled;
}
}
如上述代碼,只要把set方法設(shè)置為非靜態(tài),那么這個(gè)配置類的靜態(tài)屬性就能成功注入了。
以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
相關(guān)文章
Java開發(fā)工具-scala處理json格式利器-json4s詳解
這篇文章主要介紹了開發(fā)工具-scala處理json格式利器-json4s,文章中處理方法講解的很清楚,有需要的同學(xué)可以研究下2021-02-02
SpringMVC結(jié)合模板模式實(shí)現(xiàn)MyBatisPlus傳遞嵌套JSON數(shù)據(jù)
我們經(jīng)常會遇到需要傳遞對象的場景,有時(shí)候,我們需要將一個(gè)對象的數(shù)據(jù)傳遞給另一個(gè)對象進(jìn)行處理,但是又不希望直接暴露對象的內(nèi)部結(jié)構(gòu)和實(shí)現(xiàn)細(xì)節(jié),所以本文給大家介紹了SpringMVC結(jié)合模板模式實(shí)現(xiàn)MyBatisPlus傳遞嵌套JSON數(shù)據(jù),需要的朋友可以參考下2024-03-03
郵件的組織結(jié)構(gòu)介紹 郵件實(shí)現(xiàn)詳解(三)
這篇文章主要為大家詳細(xì)介紹了郵件的組織結(jié)構(gòu),郵件內(nèi)容的基本格式和具體細(xì)節(jié),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-10-10
springboot+dubbo實(shí)現(xiàn)時(shí)間輪算法
時(shí)間輪是一種高效利用線程資源進(jìn)行批量化調(diào)度的算法,本文主要介紹了springboot+dubbo實(shí)現(xiàn)時(shí)間輪算法,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2025-04-04
java序列化對象根據(jù)不同配置動態(tài)改變屬性名的方法
本文主要介紹了java序列化對象根據(jù)不同配置動態(tài)改變屬性名的方法,文中通過示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-05-05
SpringMVC中的@RequestMapping注解解析
這篇文章主要介紹了SpringMVC中的@RequestMapping注解解析,SpringMVC使用@RequestMapping注解為控制器指定可以處理哪些?URL?請求,在控制器的類定義及方法定義處都可標(biāo)注@RequestMapping,需要的朋友可以參考下2023-12-12
Java實(shí)現(xiàn)的mysql事務(wù)處理操作示例
這篇文章主要介紹了Java實(shí)現(xiàn)的mysql事務(wù)處理操作,結(jié)合實(shí)例形式較為詳細(xì)的分析了Java基于JDBC操作mysql數(shù)據(jù)庫實(shí)現(xiàn)事務(wù)處理的相關(guān)概念、操作技巧與注意事項(xiàng),需要的朋友可以參考下2018-08-08
Feign遠(yuǎn)程調(diào)用參數(shù)里面內(nèi)容丟失的解決方案
這篇文章主要介紹了Feign遠(yuǎn)程調(diào)用參數(shù)里面內(nèi)容丟失的解決方案,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-03-03

