通过application.properties配置SpringBoot项目
Posted 知乐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过application.properties配置SpringBoot项目相关的知识,希望对你有一定的参考价值。
application.properties可以自己新建,放在这里:(该文件可以放在4个地方,详情百度)
在文件中添加:file_path=E://Tools//apache-tomcat-9.0.1//webapps//AMPP//models//upload.stl
在controller(或其他需要的类)中引入import org.springframework.beans.factory.annotation.Value;
这样,即可使用配置文件中定义的值:
@Value("${file_path}")
private String template;
以上是关于通过application.properties配置SpringBoot项目的主要内容,如果未能解决你的问题,请参考以下文章
Java Spring - 如何通过@WithUserDetails 使用来自application.properties 的值
通过application.properties配置SpringBoot项目
将 Spring Boot 应用程序部署到外部 tomcat 服务器时,通过 application.properties 更改其端口