Чтобы воспроизвести, начиная с https://github.com/spring-projects/spri ... pring-boot -samples/spring-boot-sample-tomcat7-jsp просто добавьте:
Код: Выделить всё
@Configuration
public class WebConfig extends WebMvcConfigurerAdapter {
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addRedirectViewController("/foo", "/").setStatusCode(HttpStatus.MOVED_PERMANENTLY);
registry.addRedirectViewController("/foo.html", "/").setStatusCode(HttpStatus.MOVED_PERMANENTLY);
registry.addRedirectViewController("/foo.jsp", "/").setStatusCode(HttpStatus.MOVED_PERMANENTLY);
}
}
Подробнее здесь: https://stackoverflow.com/questions/397 ... ing-by-jsp
Мобильная версия