Springbootカスタムproファイルを読み込んでstatic静的変数方式を注入します。
Springboot proファイルを読み込みstatic静的変数を注入します。
mail Config.properties
第一の方法
スプリングブックコンポーネントでライフサイクルを初期化して属性(対象)を付与します。
第二の方式
@Value()による注釈
@Value()注解は静的変数に対して属性注入を行いません。第一の方式の思惟によって、私達は必ず方法を考えなければなりません。このコンポーネントの初期化時にも値を割り当てます。
第一の方法はもちろんいいです。まず属性を書いて、@Value()注釈でこの属性を付与して、最後に@PostContrstruct注釈で静的属性に値を付けます。
ここではもう一つの方法を採用します。ここではset法によって値を賦課します。属性はstaticで修飾され、get方法もstaticで修飾されていますが、set方法はstaticではなく、@Value()注解を使ってsetを修飾する方法です。
これで注入が成功します。
第三の方式
第三の方式と第二の方式は同じです。
以上は個人の経験ですので、参考にしていただければと思います。
mail Config.properties
#
mail.host=smtp.qq.com
#
mail.port=587
#
[email protected]
#
mail.passWord=vxbkycyjkceocbdc
#
mail.timeout=25000
#
[email protected]
#
mail.personal=
#
mail.subject=
#
mail.html= :
Mail Config.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静的性質注入の解決第一の方法
スプリングブックコンポーネントでライフサイクルを初期化して属性(対象)を付与します。
@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;
}
}
DSHWechatAppliUtilツールのコンポーネントを初期化すると、@PostContstruct注釈表示を呼び出す方法が見られます。静的変数に割り当てられました。第二の方式
@Value()による注釈
@Value()注解は静的変数に対して属性注入を行いません。第一の方式の思惟によって、私達は必ず方法を考えなければなりません。このコンポーネントの初期化時にも値を割り当てます。
第一の方法はもちろんいいです。まず属性を書いて、@Value()注釈でこの属性を付与して、最後に@PostContrstruct注釈で静的属性に値を付けます。
ここではもう一つの方法を採用します。ここではset法によって値を賦課します。属性はstaticで修飾され、get方法もstaticで修飾されていますが、set方法はstaticではなく、@Value()注解を使ってsetを修飾する方法です。
これで注入が成功します。
第三の方式
第三の方式と第二の方式は同じです。
@ConfigurationProperties(prefix = ProjectConfig.PROJECT_PREFIX)
public class ProjectConfig {
public static final String PROJECT_PREFIX = "project";
/**
*
*/
private String version;
/**
*
*/
private String name;
/**
*
*/
private String copyrightYear;
/**
*
*/
private static boolean demoEnabled;
/**
* ip
*/
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メソッドを非静的に設定すると、この構成クラスの静的属性が注入に成功します。以上は個人の経験ですので、参考にしていただければと思います。