Spring Boot 설정 매개 변 수 를 가 져 오 는 데 가장 많이 사용 되 는 두 가지 방법
2083 단어 자바
, , :dev,test,prod, , , :redis,mq, url 。 , 。
2. 프로필
application-dev.properties
application-test.properties
application-prod.properties
#mq
mq.acessKey=
mq.secretKey=
spring.redis.host=127.0.0.1
spring.redis.password=
spring.redis.pool.max-active=100
spring.redis.pool.max-idle=100
spring.redis.pool.max-wait=10000
spring.redis.pool.min-idle=20
spring.redis.port=6379
spring.redis.sentinel.master= # Name of Redis server.
spring.redis.sentinel.nodes= # Comma-separated list of host:port pairs.
spring.redis.timeout=10000
3. @ value 주 해 를 통 해 설정 을 불 러 옵 니 다.
, @Value("${ }")
@Service
public class RocketMqService {
private static final Log log = LogFactory.getLog(RocketMqService.class);
@Value("${mq.acessKey}")
private String mqAccessKey;
@Value("${mq.secretKey}")
private String mqSecretKey;
}
4. Properties 를 통 해 파일 을 읽 는 방식
private static void readConfig(){
try {
Properties p = ResourcesUtil.readResources("redis.properties");
ADDR_ARRAY = p.getProperty("spring.redis.host");
PASSWORD = p.getProperty("spring.redis.password");
PORT = Integer.parseInt(p.getProperty("spring.redis.port"));
MAX_ACTIVE = Integer.parseInt(p.getProperty("spring.redis.pool.max-active"));
MAX_IDLE = Integer.parseInt(p.getProperty("spring.redis.pool.max-idle"));
MAX_WAIT = Integer.parseInt(p.getProperty("spring.redis.pool.max-wait"));
TIMEOUT = Integer.parseInt(p.getProperty("spring.redis.timeout"));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
총화
Spring Boot , 。 , !
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.