@Value("${report.background.image:}")
private String imageFilePath;
默认值是空
@Value("${report.background.image:aaa}")
private String imageFilePath;
默认值是aaa
@Value("${report.background.image:}")
private String imageFilePath;
默认值是空
@Value("${report.background.image:aaa}")
private String imageFilePath;
默认值是aaa
本文来自博客园,作者:atq,转载请注明原文链接:https://www.cnblogs.com/atq999/p/16249863.html