๋ฐฉ๋ฒ 2: WebSecurityCustomizer๋ก ๋ณด์ ๋ฌด์ ์ค์ WebSecurityCustomizer๋ฅผ ์ฌ์ฉํด ํน์ ๊ฒฝ๋ก์ ๋ํด Spring Security์ ๋ชจ๋ ํํฐ๋ฅผ ๋ฌด์ํ๋๋ก ์ค์ ํ ์ ์์ต๋๋ค.@Beanpublic WebSecurityCustomizer webSecurityCustomizer() { return (web) -> web.ignoring() // JWT ์ธ์ฆ์ ๊ฑฐ์น์ง ์๋ ๊ฒฝ๋ก .antMatchers("/api/public/**");}์ฃผ์ ์ฌํญ:๋ณด์ ๋ฌด์: ํด๋น ๊ฒฝ๋ก๋ Spring Security์ ๋ชจ๋ ํํฐ๋ฅผ ์ฐํํ๋ฏ๋ก, CORS๋ CSRF ๊ฐ์ ์ค์ ๋ ์ํฅ์ ๋ฐ์ง ์์ต๋๋ค.๊ฒฝ๋ก ์์ธ: ๋ณด์์ด ์์ ํ ๋นํ์ฑํ๋๋ฏ๋ก, ์ธ์ฆ์ด ํ์ ์๋..