아키텍처 Architecture/Troubleshooting 트러블슈팅
2020. 7. 9.
Spring security 설정으로 인한 401 Unauthorized 에러
1. 개발환경 Back-end : Spring-boot Front-end : Vue.js 2. 문제현상 1) Back-end와 Front-end를 따로 서버 구동했을때는 API 통신이 원활하게 진행됨 (Back-end : mvn spring-boot run / 8080 포트 Front-end : npm run serve / 8081포트) 2) Front-end를 build 후 (npm run build) 생성된 static 파일들 (index.html, js폴더, css폴더, favicon.ico 등) 을 Back-end의 static 폴더 경로에 넣고 Back-end 를 run 했을때, Front-end에서 빌드한 index.html으로 접근이 안되는 상황 (401 Unauthorized 발생) 3. ..