keystore file not found
-
[spring boot] keystore file not found 에러Web/Spring boot 2021. 10. 15. 22:34
keystore를 사용해 ssl을 적용하니 로컬에서 작동이 되었다. 하지만... 개발서버에 반영하니 바로 에러 빠방 keystore을 찾을수 없다는 에러... 해결방법은 간단했다. server: ssl: key-store: classpath:keystore.p12 application.yml파일에서 key-store경로를 classpath:파일명 으로 변경하는 것이었다. 내 keystore파일의 경로는 src/main/resources/ 이다. https://stackoverflow.com/questions/55364537/spring-java-app-not-finding-the-keystore-file Spring Java app not finding the keystore file I am tryin..