특정 URL에 대해 정적 페이지 제공
- test.do -> 이동할 URL
- /test/test -> jsp 경로
XML
<mvc:view-controller path="/test.do" view-name="/test/test" />
Java
@Override
public void addViewControllers(VIewControllerRegistry registry) {
registry.addViewController("/test.do").setViewName("/test/test");
}
굳이 컨트롤러에서 매핑해 줄 필요가 없다
'Old > Spring' 카테고리의 다른 글
Log4j (0) | 2018.02.21 |
---|---|
target 폴더 제외 (0) | 2018.02.20 |
js 파일 경로 <c:url> (0) | 2018.02.13 |
댓글