https가 http로 리다이렉트 될때 해결법
-
[spring] https가 http로 리다이렉트 될때 해결법Web/Spring boot 2022. 2. 15. 15:03
spring의 controller에서 sendirect를 사용했을때 http로 리다이렉트 되는 현상이 있었다. L4장비의 문제인지 원인파악중 구글링을 하니 답이 나왔다. spring에서 redirect 할때 기본 프로토콜은 http이다. 그래서 아래 코드와 같이 작성후 url을 호출했을때 @GetMapping("/redirect-test") public String redirectTest() { return "redirect:/result"; } https://www.myurl.com/redirect-test 호출 http://www.myurl.com/result redirect 된 페이지 redirect 페이지의 프로토콜이 http로 변경된다. 해결 방법으로는 application.yaml파일에 설정 ..