Spring boot WebMvcConfigurer jsp 셋팅
2021. 4. 5. 18:06ㆍJava/Spring Boot
'/WEB-INF/jsp/'에서 마지막에 '/'가 빠지면 인식 못함
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ViewResolverRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
@ComponentScan
public class WebConfig implements WebMvcConfigurer {
@Override
public void configureViewResolvers(ViewResolverRegistry registry) {
registry.jsp("/WEB-INF/jsp/",".jsp");
}
}
참고로 위 내용과 상관없이 jsp화면을 직접호출하는 경우는 /webapp 아래에 파일을 두면 호출 가능
파일위치 : /webapp/temp.jsp
URL : http://localhost:8080/temp.jsp
'Java > Spring Boot' 카테고리의 다른 글
파일 UTF-8 셋팅 (0) | 2021.09.12 |
---|---|
Spring boot index.html 설정 (0) | 2021.04.05 |
WebMvcConfigurerAdapter is deprecated (0) | 2021.04.05 |
Spring boot thymeleaf 적용 (0) | 2021.03.31 |
Spring boot Cors 셋팅 주의점 (0) | 2021.03.31 |