package com.newfiber.common.constant; import lombok.Data; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.PropertySource; /** * @author : XIEY * @Project_name:newfiber_pump_lwz * @date:2020/9/6 15:32 * @email:hhy_0602@163.com * @description: */ @Data @Configuration @PropertySource(value = {"classpath:devfiles/lwz.properties"}, ignoreResourceNotFound = true)//可以放多个,{}里面用,分开 public class LWZBaseClazz { /** * 文件上传路径 */ // @Value("${lwz.upload.fileUrl}") private String uploadUrl; /** * app下载路径 */ // @Value("${lwz.download.appUrl}") private String appUrl; }