我正在使用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
?