1.读取application.properties
@Component @ConfigurationProperties(prefix="images.product.column") public class ColumnImageConfig { private String path; public String getPath() { return path; } public void setPath(String path) { this.path = path; } }
使用:在需要的地方 注入该文件,@Autowired xxxConfig xxx; 调用xxx.getXxx()方法即可
时间: 2024-11-06 17:25:35