在Spring Boot应用程序中将模板更改为本机html文件

时间:2016-02-13 13:07:18

标签: java spring-boot

我正在使用spring boot 1.3.2开发应用程序

我想从我的网络应用中删除Thymeleaf模板引擎。我的所有html文件都在目录resource/template/html中,我的SpringBoot配置类包含bean:

@Bean
public WebMvcConfigurerAdapter forwardToIndex() {
    return new WebMvcConfigurerAdapter() {
        @Override
        public void addViewControllers(ViewControllerRegistry registry) {
            registry.addViewController("/").setViewName("html/search/wellcomeScreen");
            registry.addViewController("/offers").setViewName("html/search/offersearch/searchScreen");
        }
    }
}

当我将html文件从resource/template/html移动到resource/static/html目录时,如何创建url以备份我的html文件以将文件/static/html/search/offersearch/search映射到/offers

0 个答案:

没有答案