第一步在yml文件中配置本地上传路径(Windows系统 '/' 和 '\' 都能识别):
import:
filePath: E:\static\otherPlan\
imgPath: E:\static\otherPlan\thumbnail\
第二步在实现类里面引用路径:
@Value("${import.filePath}")
private String filePath;
然后就可以直接使用了
拼接路径建议使用File.separator,Windows都可以识别,而Linux只能识别 '/',使用File.separator就不用担心这个问题了
文章来源:https://www.toymoban.com/news/detail-528978.html
path + File.separator + originalFilename
给所有接口前加一个统一的前缀:文章来源地址https://www.toymoban.com/news/detail-528978.html
server:
tomcat:
uri-encoding: UTF-8
port: 8380
servlet:
context-path: /app
到了这里,关于yml文件中配置路径并引用的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!