import java.util.HashMap;
import java.util.Map;
import org.apache.http.impl.client.CloseableHttpClient;
+import org.springframework.beans.BeanUtils;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.core.Ordered;
import org.springframework.core.env.Environment;
+import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
+import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
import org.springframework.web.servlet.mvc.UrlFilenameViewController;
import org.thymeleaf.resourceresolver.IResourceResolver;
import org.thymeleaf.resourceresolver.UrlResourceResolver;
+import org.thymeleaf.spring4.view.ThymeleafView;
+import org.thymeleaf.spring4.view.ThymeleafViewResolver;
import org.thymeleaf.templateresolver.TemplateResolver;
@SpringBootApplication
-public class Application
+public class Application extends WebMvcConfigurerAdapter
{
@Bean
public RegexUrlHandlerMapping proxiedHandlerMapping(
return new JuploDialect();
}
+ @Bean
+ public ThymeleafView error()
+ {
+ ThymeleafView view = BeanUtils.instantiateClass(ThymeleafView.class);
+ view.setTemplateName("/thymeleaf/error.html");
+ return view;
+ }
+
+ @Override
+ public void addViewControllers(ViewControllerRegistry registry)
+ {
+ registry.addViewController("/").setViewName("forward:index.html");
+ }
+
public static void main(String[] args)
{