최근 포스트

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...

mTLS

최대 1 분 소요

overview Mutual TLS (mTLS) is an extension of the standard TLS protocol that provides mutual authentication between client and server. This ensures that...