최근 포스트

READ_UNCOMMITTED

1 분 소요

overview READ_UNCOMMITTED is the lowest isolation level in database transaction management. It allows a transaction to read data that has been modified by ot...

how to use PATCH method in feign client

최대 1 분 소요

overview 2025-05-27 17:30:17 [ERROR] [http-nio-8082-exec-1] o.o.t.c.c.GlobalExceptionHandler - occur an exception: feign.RetryableException: Invalid ...

try with resources

최대 1 분 소요

overview 자바에서 파일, DB 연결, 네트워크 소켓 등.. 자원을 다룰 때 항상 자원을 열면 필히 닫아줘야 함, 그렇지 않으면 메모리 누수, 파일잠김 혹은 연결 누수등의 문제가 발생할 수 있음 이를 보다 간결한 문법인 try-with-resources를 통해 간소화해 사...

X509TrustManager

3 분 소요

overview When building secure applications in Java, you’ll often encounter the X509TrustManager class. It’s a cornerstone of Java’s security infrastruct...