Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Tue Mar 28 22:25:43 CST 2017
There was an unexpected error (type=Internal Server Error, status=500).
Circular view path [login]: would dispatch back to the current handler URL [/login] again. Check your ViewResolver setup! (Hint: This may be the result of an unspecified view, due to default view name generation.)
首先,這個出錯頁面是SpringBoot的一個預設出錯頁面。源碼在:org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration 第151行。
這種錯誤一般是配置錯誤,或者MVC報錯引起的錯誤。
比如說,在newer versions of Spring, following needs to be put in application.properties file:
spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp
Also, JSP files need to be put under src/main/resources/META-INF/resources/WEB-INF/jsp
推薦直接使用java代碼配置的方式,這樣友善看代碼:
package com.restfiddle.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ViewResolverRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
/**
* Created by jack on 2017/3/28.
*
* @author jack
* @date 2017/03/28
*/
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {
@Override
public void configureViewResolvers(ViewResolverRegistry registry) {
//spring.view.prefix=/WEB-INF/jsp/
//spring.view.suffix=.jsp
registry.jsp("/WEB-INF/jsp/", ".jsp");
//registry.freeMarker();
//registry.velocity();
//registry.groovy();
}
}
問題參考:
http://stackoverflow.com/questions/27113452/circular-view-path-in-a-simple-spring-boot-project-with-a-controller