try with resources
overview 자바에서 파일, DB 연결, 네트워크 소켓 등.. 자원을 다룰 때 항상 자원을 열면 필히 닫아줘야 함, 그렇지 않으면 메모리 누수, 파일잠김 혹은 연결 누수등의 문제가 발생할 수 있음 이를 보다 간결한 문법인 try-with-resources를 통해 간소화해 사...
overview 자바에서 파일, DB 연결, 네트워크 소켓 등.. 자원을 다룰 때 항상 자원을 열면 필히 닫아줘야 함, 그렇지 않으면 메모리 누수, 파일잠김 혹은 연결 누수등의 문제가 발생할 수 있음 이를 보다 간결한 문법인 try-with-resources를 통해 간소화해 사...
overview When building secure applications in Java, you’ll often encounter the X509TrustManager class. It’s a cornerstone of Java’s security infrastruct...
overview
overview Mutual TLS (mTLS) is an extension of the standard TLS protocol that provides mutual authentication between client and server. This ensures that...
overview A P12 file is a binary format that combines a certificate chain and a private key into a single, encrypted file. This format is widely used in SS...