스프링 MVC 프레임워크
스프링 MVC 프레임워크를 간략하게 살펴보겠습니다.
우선 MVC 돌아가는 그림을 직접 그려보았습니다.
<스프링 MVC>
우선 스프링 MVC를 사용하기 위해 다음과 같은 설정을 진행하게 됩니다.
package config;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.ViewResolverRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
@EnableWebMvc
public class MvcConfig implements WebMvcConfigurer {
@Override
public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
configurer.enable();
}
@Override
public void configureViewResolvers(ViewResolverRegistry registry) {
registry.jsp("/WEB-INF/view/", ".jsp");
}
}
'웹 > Spring' 카테고리의 다른 글
REST AJAX 댓글 등록 처리 (2) | 2019.04.28 |
---|---|
REST 방식 (0) | 2019.03.31 |
Spring - UriComponentsBuilder의 사용 (0) | 2019.03.27 |
스프링프레임워크 게시글 Github (0) | 2019.03.26 |
RedirectAttributes의 addAttribute VS addFlashAttribute 차이점 (2) | 2019.03.24 |