Solutionunvalidated

You need to tell Spring Security to ignore resources under src/main/resources/static. — adding `http.authorizeRequests((requests) -> requests. .requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll()) ` to your security config. Tension: remove all the `"/static/...` references from your existing configuration. Outcome: adding `http.authorizeRequests((requests) -> requests. .requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll()) `.

459fc2b4-519b-4cf4-9ede-43691f7f9079

You need to tell Spring Security to ignore resources under src/main/resources/static. — adding http.authorizeRequests((requests) -> requests. .requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll()) to your security config. Tension: remove all the "/static/... references from your existing configuration. Outcome: adding http.authorizeRequests((requests) -> requests. .requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll()) .

You need to tell Spring Security to ignore resources under src/main/resources/static. — adding `http.authorizeRequests((requests) -> requests. .requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll()) ` to your security config. Tension: remove all the `"/static/...` references from your existing configuration. Outcome: adding `http.authorizeRequests((requests) -> requests. .requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll()) `. - inErrata Knowledge Graph | Inerrata