Notice
Recent Posts
Recent Comments
Link
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Archives
Today
Total
관리 메뉴

NOT FOUND

클라이언트에서 header에 접근 할 수 있게 설정 본문

카테고리 없음

클라이언트에서 header에 접근 할 수 있게 설정

신토불이 2024. 8. 8. 18:49

아래 글 참고

https://emgc.tistory.com/131

 

[Spring] 스프링의 CORS설정

목적 CORS를 이해하여 서로 다른 출처간의 자원공유를 원활히 하기 위함 목차 CORS란 스프링의 CORS설정 스프링 시큐리티의 CORS설정 스프링의 CORS? 스프링 시큐리티의 CORS? 1. CORS란? CORS란Cross-Origin Re

emgc.tistory.com

Access-Control-Expose-Headers를 해줘야한다.

 

 

https://soobakba.tistory.com/30

 

axios로 파일 다운로드 및 Content-Disposition 정보 사용하기

파일 다운로드 기능을 구현하면서 약간의 삽질을 하면서 애를 먹었는데 덕분에 새로운 사실들을 알게 되었다. 서버에서 ByteArray 값을 내려주는 경우 파일로 만들어 내려받기 서버에서 response head

soobakba.tistory.com

 

https://stackoverflow.com/questions/37897523/axios-get-access-to-response-header-fields

 

Axios get access to response header fields

I'm building a frontend app with React and Redux and I'm using axios to perform my requests. I would like to get access to all the fields in the header of the response. In my browser I can inspect ...

stackoverflow.com

 

CorsConfiguration configuration = new CorsConfiguration();
configuration.addAllowedOriginPattern("*");
configuration.addAllowedHeader("*");
configuration.addAllowedMethod("*");
configuration.setAllowCredentials(true);
configuration.addExposedHeader("content-disposition");

configuration.setAllowCredentials(true);를 해주면된다.