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 | 29 | 30 |
Tags
- @ControllerAdvice
- @SpyBean
- java
- Service Locator 패턴
- 데이터베이스
- Web
- NotEmpty
- Connection Pool
- NotBlank
- deleteById
- Proxy Patter
- Spring Boot
- Effetive Java
- springboot
- FCM
- 플라이웨이트
- db
- 트랜잭션
- JPA
- 디자인 패턴
- Service Locator
- 이펙티브 자바
- Firebase
- @MockBean
- Item04
- Effective Java
- @Valid
- restTemplate
- SQL 삽입 공격
- multi module
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