我想创建spring boot web应用程序。
我有两个静态html文件:one.html,two.html。
我想将它们映射如下
localhost:8080/one
localhost:8080/two
不使用模板引擎(Thymeleaf)。
怎么做?我尝试了很多方法,但是我有404错误或500错误(循环视图路径[one.html]:将调度回当前处理程序URL)。
OneController.java是:
@Controller
public class OneController {
@RequestMapping("/one")
public String one() {
return "static/one.html";
}
}
项目结构
答案 0 :(得分:6)
请更新您的WebMvcConfig并包含UrlBasedViewResolver和/ static资源处理程序。 Mine WebConfig类如下所示:
@Configuration
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
super.addResourceHandlers(registry);
}
@Bean
public ViewResolver viewResolver() {
UrlBasedViewResolver viewResolver = new UrlBasedViewResolver();
viewResolver.setViewClass(InternalResourceView.class);
return viewResolver;
}
}
我检查过它,似乎正在工作。
Maciej的回答基于浏览器的重定向。我的解决方案返回静态而没有浏览器交互。
答案 1 :(得分:1)
如果您不关心其他浏览器重定向,可以使用:
@Controller
public class OneController {
@RequestMapping("/one")
public String one() {
return "redirect:/static/one.html";
}
}
答案 2 :(得分:1)
在我的情况下,我想将所有子路径映射到同一文件,但将浏览器路径保留为原始请求的路径,同时使用thymeleaf,然后不想覆盖它的解析器。
@Controller
public class Controller {
@Value("${:classpath:/hawtio-static/index.html}")
private Resource index;
@GetMapping(value = {"/jmx/*", "/jvm/*"}, produces = MediaType.TEXT_HTML_VALUE)
@ResponseBody
public ResponseEntity actions() throws IOException {
return ResponseEntity.ok(new InputStreamResource(index.getInputStream()));
}
}
糟糕。每次匹配都会从index.html文件中读取数据,不会被缓存
答案 3 :(得分:0)
我是春天和百里香的新手,花了一个小时试图解决这个问题。
在您的“application.properties”中添加
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html