Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- JPA
- restTemplate
- Item04
- 디자인 패턴
- 플라이웨이트
- springboot
- FCM
- Service Locator 패턴
- Spring Boot
- NotBlank
- 데이터베이스
- 이펙티브 자바
- @MockBean
- @SpyBean
- NotEmpty
- Firebase
- 트랜잭션
- SQL 삽입 공격
- Web
- Effective Java
- deleteById
- Service Locator
- multi module
- Effetive Java
- java
- Connection Pool
- @ControllerAdvice
- Proxy Patter
- db
- @Valid
Archives
- Today
- Total
목록cache (1)
NoTimeForDawdling
Wrapper class Cache 파헤치기
Java에 애플리케이션의 성능 향상을 위한 Cache로직이 종종 사용됩니다. 실제로 Integer 클래스는 내부에서 Integer 사용을 위해 IntegerCache를 관리합니다. IntegerCache 정적 클래스 public final class Integer extends Number implements Comparable { ... private static class IntegerCache { static final int low = -128; static final int high; static final Integer cache[]; static { // high value may be configured by property int h = 127; String integerCacheHigh..
Java
2021. 2. 13. 17:06