작성자 없음
작성자 정보가 삭제된 글입니다.
작성
·
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();