오래된 질문이지만... 강의 섹션2의 Board 모듈 생성, 2:55를 보시면 boards 모듈 생성시, app.module.ts 파일에 자동으로 코드가 update 됩니다. 저도 그랬고, 작성자님도 그런 거 같은데, 코드가 자동으로 업데이트 되지 않았다면, 상단에 import 해주고, imports[] 안에 모듈 넣어주시면 잘 작동할껍니다 ㅎ
https://github.com/spring-projects/spring-boot/issues/28953 원래 그렇게 만든거 같슴다. 2.7.2에서도 안되던데, 찾아보니까 위 링크에 나온 방법으로 해결했슴다. 강의 기준, SecurityConfig.java에서 @Override public void configure(WebSecurity web) throws Exception { web .ignoring() .antMatchers( "/h2-console/**", "/favicon.ico", "/error" ); } "/error"를 추가하면 잘 나옵니다.