Spring不断返回字符串而不是jsp / html内容

2022-09-03 08:52:26

我试图理解整个春季框架。据我所知,使用gradle的相对较新的技术使许多在线教程和帖子过时了吗?

我遇到的主要问题是,当我尝试显示jsp或html页面时,网页的正文显示文本:“文件名.jsp”。

该项目由New-> Other-> Spring Starter Project使用Gradle和STS 3.7创建。目标是使用 MVC 模式创建 Web 应用程序。

文件夹结构:

测试

--弹簧元件(由STS创建)

--src/main/java
++--TEST
++++--TestApplication.java (由 STS 创建)
++--TEST.Controller
++++--JSPController.java

--sec/main/resources
++--application.properties(由 STS 创建,空文件)

--src/main/webapp ( ** 我创建了这个目录,但这是必需的吗?
++--WEB-INF
++++--home.jsp
++++--home.html
++++--web.xml (** 下面的附加问题)

测试应用.java

package TEST;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication 
public class TestApplication {

    public static void main(String[] args) {
        SpringApplication.run(TestApplication.class, args);          
     }
}

家.jsp

    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Test</title>
</head>
<body>

    <h1>Test 1</h1>

    <form>
        First name:<br> <input type="text" name="firstname"> <br>
        Last name:<br> <input type="text" name="lastname">
    </form>

</body>
</html>

JSPController.java

package TEST.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class JSPController {

    @RequestMapping(value = "/jsp", method = RequestMethod.GET)
    public String home(){
        return "/webapp/WEB-INF/home.jsp";
    }   

}

网.xml

//empty file right now

build.gradle

buildscript {
    ext {
        springBootVersion = '1.2.5.RELEASE'
    }
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") 
        classpath("io.spring.gradle:dependency-management-plugin:0.5.1.RELEASE")
    }
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot' 
apply plugin: 'io.spring.dependency-management' 

jar {
    baseName = 'TEST'
    version = '0.0.1-SNAPSHOT'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories {
    mavenCentral()
}


dependencies {
    compile("org.springframework.boot:spring-boot-starter-web")
    testCompile("org.springframework.boot:spring-boot-starter-test") 
}


eclipse {
    classpath {
         containers.remove('org.eclipse.jdt.launching.JRE_CONTAINER')
         containers 'org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8'
    }
}

task wrapper(type: Wrapper) {
    gradleVersion = '2.3'
}

当我转到 http://localhost:8080/jsp 时,html页面的正文是:/webapp/WEB-INF/home.jsp

因此,jsp 根本没有显示。我尝试过html,有或没有方法=RequestMethod.GET/POST。

**附加问题:许多在线帖子/教程都进入了.xml文件,例如,web.xml。据我所知,这些不再是必需的,因为弹簧+gradle从@notations自动生成.xml?


答案 1

这是因为您使用的是注释而不是 .@RestController@Controller

将类注释从

@RestController
public class JSPController {
  ...
}

自:

@Controller
public class JSPController {
  ...
}

使用 对类进行批注时,默认情况下,所有使用 假定语义进行批注的方法。换句话说,您的方法是将字符串序列化为 JSON,而不是将其值映射到视图。RestController@RequestMapping@ResponseBody#home/webapp/WEB-INF/home.jsp


答案 2

将@Controller更改为@RestController后,您必须添加此依赖项:

<dependency>
        <groupId>org.apache.tomcat.embed</groupId>
        <artifactId>tomcat-embed-jasper</artifactId>
    </dependency>

到您的 pom.xml 文件,如以下链接中所述:https://www.yawintutor.com/warn-3200-path-with-web-inf-or-meta-inf/