通过application.properties配置SpringBoot项目

【通过application.properties配置SpringBoot项目】知识的价值不在于占有,而在于使用。这篇文章主要讲述通过application.properties配置SpringBoot项目相关的知识,希望能为你提供帮助。
application.properties可以自己新建,放在这里:(该文件可以放在4个地方,详情百度)

通过application.properties配置SpringBoot项目

文章图片

在文件中添加:
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;

?

    推荐阅读