Example usage for org.springframework.web.servlet.config.annotation ViewResolverRegistry jsp

List of usage examples for org.springframework.web.servlet.config.annotation ViewResolverRegistry jsp

Introduction

In this page you can find the example usage for org.springframework.web.servlet.config.annotation ViewResolverRegistry jsp.

Prototype

public UrlBasedViewResolverRegistration jsp(String prefix, String suffix) 

Source Link

Document

Register JSP view resolver with the specified prefix and suffix.

Usage

From source file:com.orangeandbronze.jblubble.sample.BlobstoreSampleWebMvcConfig.java

@Override
public void configureViewResolvers(ViewResolverRegistry registry) {
    registry.jsp("/WEB-INF/views/", ".jsp");
}