인프런 커뮤니티 질문&답변

작성자 없음

작성자 정보가 삭제된 글입니다.

토비의 스프링 부트 - 이해와 원리

SpringBootApplication

강의 초반에 나오는 코드에서 에러가 납니다.

작성

·

468

0

 0:05초 부분에서 applicationContext를 익명클래스가 아닌 람다 표현식으로 바뀌어져있는데, 이 부분을 그대로 따라 쳤는데, 에러가 납니다.

public static void main(String[] args) {
        AnnotationConfigWebApplicationContext applicationContext = onRefresh() -> {
                super.onRefresh();

                ServletWebServerFactory serverFactory = this.getBean(ServletWebServerFactory.class);
                DispatcherServlet dispatcherServlet = this.getBean(DispatcherServlet.class);

                WebServer webServer = serverFactory.getWebServer(servletContext -> {
                    servletContext.addServlet("dispatcherServlet", dispatcherServlet)
                            .addMapping("/*");
                });
                webServer.start();
        };
        applicationContext.register(HellobootApplication.class); // 구성정보가 있는 클래스 등록
        applicationContext.refresh();
    }
}

 

onRefresh() -> {

...

}

이 부분이 이해가 잘 되지 않는데, 어느 부분이 잘못된 건가요?

AnnotationConfigWebApplicationContext applicationContext = onRefresh() -> {
                super.onRefresh();

답변 1

0

토비님의 프로필 이미지
토비
지식공유자

강의에 나오는 코드는 다음과 같습니다. 앞부분 코드를 잘못 작성하신 것 같습니다.

AnnotationConfigWebApplicationContext applicationContext =
new AnnotationConfigWebApplicationContext() {

@Override

protected void onRefresh() {

super.onRefresh();

작성자 없음

작성자 정보가 삭제된 글입니다.

질문하기