gpt4 book ai didi

Spring Boot 返回字符串而不是 View

转载 作者:行者123 更新时间:2023-12-04 15:40:48 29 4
gpt4 key购买 nike

目前我正在尝试学习 Spring Boot,因此认为使用 Spring Boot Web MVC 编写 Web 应用程序会很好。我遇到了一个问题,但没有在 Google 上找到解决方案或任何有帮助的东西。我希望这里有人可以帮助我。

该项目的目标是使用最新版本的 Spring Boot、Thymeleaf、Bootstrap 和 Hibernate 构建一个 Web 应用程序。我使用了几个教程,但有些事情让我感到困惑。

我使用 Thymeleafs layout-dialect 对 View 进行编码,但是当我在本地 Tomcat 上部署项目并浏览索引页面时,我只得到一个带有“index”的字符串,而不是 html 文件。我不知道在哪里寻找问题。我假设我尝试整合布局方言的方式或我尝试返回 View 的方式是错误的。我希望有人有想法。

Controller :

package de.rune.flying.flying.web.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class UserController {

@GetMapping ( "/" )
public ModelAndView main ( Model model ) {

ModelAndView modelAndView = new ModelAndView ( );
modelAndView.setViewName ( "index" );
return modelAndView;
}

}

我已经尝试过另一种方法(见下文),但它没有任何改变。

其他方法:

        @GetMapping ( "/" )
public String main ( Model model ) {
return "index.html";
}

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.7.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<groupId>de.rune.flying</groupId>
<artifactId>flying</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>flying</name>

<properties>
<java.version>1.8</java.version>
<bootstrap.version>4.3.1</bootstrap.version>
<thymeleaf.dialect.version>2.4.1</thymeleaf.dialect.version>
</properties>

<dependencies>

<!-- web mvc -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<!-- thymeleaf -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

<dependency>
<groupId>nz.net.ultraq.thymeleaf</groupId>
<artifactId>thymeleaf-layout-dialect</artifactId>
<version>${thymeleaf.dialect.version}</version>
</dependency>

<!-- test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>

<!-- dev tools -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>

<!-- optional -->
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>${bootstrap.version}</version>
</dependency>

</dependencies>

<build>
<finalName>flying</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<addResources>true</addResources>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
</plugin>
</plugins>
</build>

</project>

layout.html:

<!DOCTYPE html>
<html lang="de"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title layout:title-pattern="$LAYOUT_TITLE - $CONTENT_TITLE">Layout</title>

<link rel="stylesheet" th:href="@{webjars/bootstrap/4.3.1/css/bootstrap.min.css}"/>
<link rel="stylesheet" th:href="@{/static/css/main.css}">
</head>
<body>
<header>
MY Header
</header>
<section layout:fragment="content">
<p>Content goes here</p>
</section>

<footer>
<p>My footer</p>
<p layout:fragment="footer">Footer goes here</p>
</footer>

<script type="text/javascript" th:src="@{webjars/bootstrap/4.3.1/js/bootstrap.min.js}"></script>
</body>
</html>

index.html

<!DOCTYPE html>
<html lang="de"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
xmlns:th="http://www.thymeleaf.org"
layout:decorate="~{layouts/layout.html}">
<head>
<title>Index title</title>
</head>
<body>
<section layout:fragment="content">
<p>Index content</p>
</section>
</body>
</html>

如果缺少某些信息,请告诉我,然后我会上传它们,感谢您的帮助

编辑:

project structure

Screenshot of resulted view

当我在浏览器中检查 View 的源代码时,我只看到文本“索引”,所以看起来他只是返回字符串而找不到具有名称的 View 。

最佳答案

我试图让你的项目运行,但首先我遇到了同样的问题。

但是我发现在构建项目的过程中出现了一些警告。

WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.codehaus.groovy.vmplugin.v7.Java7$1 (file:/C:/Users/Constantin%20Beer/.m2/repository/org/codehaus/groovy/groovy/2.5.7/groovy-2.5.7.jar) to constructor java.lang.invoke.MethodHandles$Lookup(java.lang.Class,int)
WARNING: Please consider reporting this to the maintainers of org.codehaus.groovy.vmplugin.v7.Java7$1
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release

为了摆脱这些,我不得不在 pom 文件中注释掉以下依赖项:

<dependency>
<groupId>nz.net.ultraq.thymeleaf</groupId>
<artifactId>thymeleaf-layout-dialect</artifactId>
<version>${thymeleaf.dialect.version}</version>
</dependency>

因此 index.html 显示正确。

似乎 Thymeleaf 布局方言无法与 Spring Boot 2.1.7 一起正常工作。我也尝试了 2.xx 的其他版本,但无法正常工作。

因此,您只需注释掉 Thymeleaf Layout Dialect,它就可以工作了。

关于Spring Boot 返回字符串而不是 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57885405/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com