我在下面用args编写了spring boot应用程序。
java jar ... --credential="path\credentials.properties"
从控制台运行。我从控制台获取属性文件路径,并在需要属性时始终获取属性文件路径,首先加载属性文件,然后使用密钥获取属性。我该如何避免呢?我只想一次加载属性文件,以后总是想使用这个第一个加载的文件。我不想一次又一次地加载。那样,我不想调用它的属性。
@SpringBootApplication
@Slf4j
class ProRunner implements CommandLineRunner {
@Autowired
AnalyzeManager analyzeManager;
@Autowired
AuthService authService;
@Autowired
WriterService writerService;
static void main(String[] args) {
SpringApplication.run(ProRunner.class, args);
}
@Override
void run(String... args) throws Exception {
try {
String token = authService.postEntity("url", args).token;
Map dataSet = analyzeManager.bulkCreate(args);
writerService.write(args, dataSet)
} catch (Exception e) {
e.printStackTrace();
}
}
}
在每个服务(authService,analyzerManager,writerService)中,我根据args加载属性。稍后继续我的过程。
要加载属性,我创建了一个Util方法,每次都调用它。
public class Utils {
public static Properties getProperties(String...args) throws IOException {
File file = new File(args[0]);
Properties properties = new Properties();
InputStream in = new FileInputStream(file);
properties.load(in);
return properties;
}
}
属性文件包含以下内容:
- username
- password
- outputFileName
- startDate
- endDate
...
答案 0 :(得分:0)
您可以将属性文件注册为SpringBoot属性来源
@PropertySource("${credential}")
和credential
变量(属性文件的路径)将从命令行参数中读取。然后,您可以像这样使用@Value注释:
@Value("${property_name}") String property;
答案 1 :(得分:0)
问题如下解决:
@SpringBootApplication
@Slf4j
class ProRunner implements CommandLineRunner {
@Autowired
AnalyzeManager analyzeManager;
@Autowired
AuthService authService;
@Autowired
WriterService writerService;
static void main(String[] args) {
System.setProperty("spring.config.additional-location","credential from args");
SpringApplication.run(ProRunner.class, args);
}
@Override
void run(String... args) throws Exception {
try {
String token = authService.postEntity("url").token;
Map dataSet = analyzeManager.bulkCreate();
writerService.write(dataSet)
} catch (Exception e) {
e.printStackTrace();
}
}
}
添加了新的配置文件,如下所示:
@Configuration
public class ConfigProperties {
@Value("${cred.username}")
private String userName;
@Value("${cred.password}")
private String password;
@Value("${date.startDate}")
private String startDate;
@Value("{team.id}")
private String teamId;
public String getUserName() {
return userName;
}
public String getPassword() {
return password;
}
public String getStartDate() {
return startDate;
}
public String getTeamId() {
return teamId;
}
}
然后再调用其他类的属性:
@Autowired
private ConfigProperties configProperties;
然后调用属性:
configProperties.getUserName();
非常感谢您的帮助@ Barath,@ Andrew S