SpringBoot2.4.3无法识别我的“.jsp”模板

dgiusagp  于 2021-07-13  发布在  Java
关注(0)|答案(1)|浏览(320)

我正在创建一个简单的springboot项目,其中包含springmvc和eclipse中的其他依赖项、安全性等。为了测试这个应用程序,我创建了一个测试jsp页面,一个jsp索引,并通过“application.properties”文件配置了前缀和后缀。
我没有使用嵌入式服务器,只是在eclipse中创建了一个tomcat9.0服务器并将其添加到我的项目中。所以要运行这个项目,我只需“右键单击”根目录并选择“runas-->run on server”。
问题是:当我启动应用程序时,spring识别出我的“index.jsp”页面并重定向到我完美配置的url,但是没有找到应该显示在该url中的jsp页面(404错误)。
一些代码:
目录结构映像
应用程序属性

spring.datasource.url=jdbc:mysql://localhost:3306/employee_directory?useSSL=false&serverTimezone=UTC
spring.datasource.username=hbstudent
spring.datasource.password=hbstudent

spring.security.user.name=admin
spring.security.user.password=admin

spring.mvc.view.prefix=/WeatherProject/src/main/resources/templates/
spring.mvc.view.suffix=.jsp

logging.level.org.springframework=TRACE
logging.level.com=TRACE

用户控制器.java

package com.lvaqueiroworks.DemoWeatherProject_1.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
@RequestMapping("/user")
public class UserController {

    @GetMapping("/list")
    public String listUsers() {
        return "list-users";
    }

}

list-users.jsp文件

<!DOCTYPE html>
<html>
    <head>
    </head>
    <body>
        <p>Hii</p>
    </body>
</html>

索引.jsp

<% response.sendRedirect("user/list"); %>

weatherprojectapplication.java(主文件,但不用于运行应用程序)

package com.lvaqueiroworks.WeatherProject;

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

@SpringBootApplication
public class WeatherProjectApplication {

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

}
jecbmhm3

jecbmhm31#

使用 @RestController 在您的 UserController

相关问题