목록java (2)
King of Stock
스프링부트의 자동설정시 사용 가능한 일부 조건 어노테이션에 대한 의미 @ConditionalOnBean: 특정 BEAN CLASS나 이름이 Bean Factory에 포함되면 진행 @ConditionalOnClass: 특정 CLASS가 경로에 있으면 진행 @ConditionalOnCloudPlatform: 특정 클라우드 플랫폼(enum CloudPlatform) 환경이면 진행 @ConditionalOnExpression: SpEL에 의존하는 조건이면 진행 @ConditionalOnJava: JVM 버전이 일치하면 진행 @ConditionalOnJndi: JNDI를 사용할 수 있고 특정 위치에 있으면 진행 @ConditionalOnMissingBean: 특정 BEAN CLASS나 이름이 Bean Factor..
SplittableRandom 클래스 병렬 처리와 랜덤 숫자를 추출하는 형태의 로직을 구현할 때에 이용하면 좋을(?) 클래스입니다.java 1.8 부터 나온 이 클래스는 java api에서 다음과 같이 설명하고 있습니다.해석을 제 맘데로 해서... 원문 api doc 읽어보시는걸 강추합니다. A generator of uniform pseudorandom values applicable for use in (among other contexts) isolated parallel computations that may generate subtasks. Class SplittableRandomsupports methods for producing pseudorandom numbers of type int, ..