OpenSSL을 사용해서 localhost와 https로 통신하자 목표spring security의 http basic을 이해하고 localhost와 https로 통신해본다. 환경스프링 부트 3.2.0> Dependencies - spring-boot-starter-web - spring-boot-starter-security https란?http 프로토콜을 이용한 통신에서 데이터를 암호화하여 안전하게 통신하게 한다. https를 사용하면?클라이언트가 엔드포인트를 호출하면서 받은 응답이 인증 서버에서 보낸 것이고 누구도 통신을 가로채지 않았다는 사실을 알 수 있다. 실습spring security의 http basic 이해하기hello을 응답하는 엔드포인트를 생성하자.@RestControllerpub..