@PropertySource注解
@PropertySource是Spring boot为了⽅便引⼊properties配置⽂件提供的⼀个注解,可以标注在SpringBoot的启动类上,还可以标注在配置类(使⽤@Configuration标注的类)上。
例如:@PropertySource(value = {"classpath:box.properties"}),将classpath下的box.properties,注⼊到Spring环境中,使⽤
@Value("${key}")取值。
⽰例:
box.properties⽂件:
# ⼯具箱配置
preserveFilePath=/box/webserver/uploadfile/preservefile/
注⼊:
@SpringBootApplication
@PropertySource(value = {"classpath:box.properties"})
public class ToolboxApiApplication {
public static void main(String[] args) {
软件设计工具计算机二级SpringApplication.run(ToolboxApiApplication.class, args);
}
}
取值:
@RestControllerproperties是什么文件
public class DeleteFileController {
netstat命令的主要作用vue ajax请求@Value("${preserveFilePath}")
private String preserveFilePath;
@GetMapping("/deleteFile")text函数怎么把数字转换为文本
public void test(){
System.out.println(preserveFilePath);
}
sql查询只显示日期最新两条数据}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论