无法在 Spring Boot 中解析名称为“index”的视图

Posted

技术标签:

【中文标题】无法在 Spring Boot 中解析名称为“index”的视图【英文标题】:Could not resolve view with name 'index' in Spring Boot 【发布时间】:2020-12-11 02:53:18 【问题描述】:

春季启动:2.3.3.RELEASE

Java:11

我使用 webflux + RouterFunction + Thymeleaf 并遇到错误“无法解析名称为 'index' 的视图”。

index.html 在“资源/模板”下。 我放了一些看起来很重要的源代码。

如果我们使用“RouterFunction”,我们就不能使用 Thymeleaf 了吗?

如果您需要更多详细信息,请随时发表评论。

######## handler ###########
@Component
public class ItemHandler 

public RouterFunction<ServerResponse> routes = route()
        .path("/item", builder -> builder.GET("/", this::index))
        .build();

public Mono<ServerResponse> index(ServerRequest request) 
    Map<String, Object> attributes = new HashMap<>();
    attributes.put("items", "Hello");

    return ServerResponse.ok().contentType(MediaType.TEXT_HTML)
            .render("index", attributes);




######## index.html ###########
<!DOCTYPE html>
<html lang="ja"
      xmlns="http://www.w3.org/1999/xhtml"
      xmlns:th="http://www.thymeleaf.org">
<head>
</head>
<body>
<h1>FluxTest</h1>
</body>
</html>

######## entry point ###########
@SpringBootApplication
public class DemoWebfluxApplication 
    public static void main(String[] args) 
        SpringApplication.run(DemoWebfluxApplication.class, args);
    

【问题讨论】:

我看到了 inde.html,试试 inde 很抱歉。错字。名称是 index.html。 【参考方案1】:

负责处理静态文件位置的默认属性是spring.resources.static-locations

默认值为/META-INF/resources/, /resources/, /static/, /public/。您可以覆盖默认值或将 index.html 放在这些位置之一。

【讨论】:

spring.resources.static-locations 已弃用,而应使用 spring.web.resources.static-locations

以上是关于无法在 Spring Boot 中解析名称为“index”的视图的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot API Gateway 无法解析名称

Spring Boot Bean 解析

ActiveMQQueue无法解析为spring-boot-sample类型

java spring-boot错误:“无法解析符号jdbc”

Spring Boot 无法解析字符串中的占位符

当我尝试使用 Spring Boot 为 SessionFactory 创建 bean 时无法解析的循环引用