@Value關於static欄位的注入
阿新 • • 發佈:2018-11-12
@Component public class BaseCode { //應用key public static String APP_KEY; //應用金鑰 public static String APP_SECRET; //不帶引數的請求地址 public static String REQUEST_URL; @Value("${open.appKey}") private String appKey; @Value("${open.appSecret}") private String appSecret; @Value("${open.requestUrl}") private String requestUrl; @PostConstruct public void init() { APP_KEY = appKey; APP_SECRET=appSecret; REQUEST_URL=requestUrl; //System.out.println("---初始化開放平臺api引數---appKey---"+APP_KEY+"---appSecret---"+APP_SECRET+"---url---"+REQUEST_URL+"---"); } }