package com.hfkj.config; import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.context.annotation.PropertySource; import org.springframework.stereotype.Component; @Component("commonSysConfig") @ConfigurationProperties @PropertySource("classpath:/commonConfig.properties") @Data public class CommonSysConfig { /** * 淘宝请求参数 */ private String taoBaoPostUrl; private String taoBaoAppKey; private String taoBaoAppSecret; }