Spring Boot 설정 매개 변 수 를 가 져 오 는 데 가장 많이 사용 되 는 두 가지 방법

2083 단어 자바
1. 사용자 정의 속성 및 상수
      ,              ,    :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              ,            。           ,      !

좋은 웹페이지 즐겨찾기