一、定義參數(shù)
在application.properties中第一自己想要定義的參數(shù)彤路。
ziweidajiu.redisPath = 127.0.0.1
二秕硝、定義一個(gè)Model
自定義一個(gè)model接受配置文件中的參數(shù)
@ConfigurationProperties(prefix = "ziweidajiu")
public class Ziweidajiu {
private String redisPath;
public String getRedisPath() {
return redisPath;
}
public void setRedisPath(String redisPath) {
this.redisPath = redisPath;
}
}
三、在SpringBootApplication或使用的類中加入
@EnableConfigurationProperties({Ziweidajiu.class})
四洲尊、使用
@Autowired
private Ziweidajiu ziweidajiu;
Jedis jedis = new Jedis(ziweidajiu.getRedisPath(), 6379);