当前位置: 首页 > 知识库问答 >
问题:

找不到Spring Boot jsp文件错误404奇怪前缀

越伟泽
2023-03-14

我目前正在学习Spring/Spring Boot,我正在尝试编写忘记密码功能。我的所有其他功能,如登录等,都按预期工作,但由于某种原因,重定向到重置密码页面不起作用,并给我带来以下错误,其中它查找带有奇怪前缀的jsp。

有一个意外的错误(type=未找到,status=404)。

找不到JSP文件[/reset-password/WEB-INF/JSP/reset-password.JSP]

我的文件夹结构

我生成如下所示的链接:http://localhost:8080/reset-password/{a-随机-uuid}

重置密码。jsp

<%@ include file="includes/header.jsp" %>
<div class="panel panel-primary">
  <div class="panel-heading">
    <h3 class="panel-title">Reset your password</h3>
  </div>
  <div class="panel-body">
    <form:form modelAttribute="resetPasswordForm" role="form">
      <form:errors cssClass="error" />
      <div class="form-group">
        <form:label path="password">Type new password</form:label>
        <form:password path="password" class="form-control"
                       placeholder="Password" />
        <form:errors cssClass="error" path="password" />
      </div>
      <div class="form-group">
        <form:label path="retypePassword">Retype new password</form:label>
        <form:password path="retypePassword" class="form-control"
                       placeholder="Retype password" />
        <form:errors cssClass="error" path="retypePassword" />
      </div>
      <button type="submit" class="btn btn-primary">Reset password</button>
    </form:form>
  </div>
</div>
<%@include file="includes/footer.jsp"%>

我的重置控制器:

[imports]

@Controller
@RequestMapping("/reset-password/{resetPasswordCode}")
public class ResetPasswordController {

    private final UserCommandService userCommandService;

    public ResetPasswordController(UserCommandService userCommandService) {
        this.userCommandService = userCommandService;
    }

    @GetMapping
    public String forgotPassword(Model model){
        model.addAttribute(new ResetPasswordForm());
        return "reset-password";
    }

    @PostMapping
    public String resetPassword(@PathVariable String resetPasswordCode, @Validated ResetPasswordForm resetPasswordForm, BindingResult result, RedirectAttributes redirectAttributes){
        if (result.hasErrors()) {
            return "reset-password";
        }
        try{
            userCommandService.resetPassword(resetPasswordCode, resetPasswordForm.getPassword());
            MyUtils.flash(redirectAttributes, "success", "Password was changed");
            return "redirect:/login";
        } catch (NoSuchElementException e) {
            result.reject("Url is invalid");
            return "reset-password";
        }
    }
}

重置密码形式

package com.learningspring.springdiproject.dto;

import constraints.Password;
import constraints.RetypePassword;

@RetypePassword
public class ResetPasswordForm {

    @Password
    private String password;

    @Password
    private String retypePassword;


    public String getRetypePassword() {
        return retypePassword;
    }

    public void setRetypePassword(String retypePassword) {
        this.retypePassword = retypePassword;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }
}

属性文件

spring.mvc.view.prefix= WEB-INF/jsp/
spring.mvc.view.suffix= .jsp

spring.datasource.url=jdbc:h2:~/test;DB_CLOSE_ON_EXIT=FALSE;AUTO_SERVER=TRUE
spring.datasource.username= spring
spring.datasource.password= spring
spring.datasource.driverClassName=org.h2.Driver
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
spring.jpa.hibernate.ddl-auto=create
spring.jpa.properties.javax.persistence.validation.mode= none

最后是我的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.5.2</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.learningspring</groupId>
    <artifactId>springdiproject</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>war</packaging>
    <name>springdiproject</name>
    <description>Demo project for Spring Boot</description>
    <properties>
        <java.version>11</java.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-mail</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-validation</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
        <groupId>com.h2database</groupId>
        <artifactId>h2</artifactId>
        <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-taglibs</artifactId>
            <version>5.4.6</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                    <compilerArgs>
                        <arg>-parameters</arg>
                    </compilerArgs>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

我很确定我的pom和控制器是正确的,因为我看不出这个控制器和我的其他控制器之间有什么区别。

注意:密码和重新键入密码只是自定义约束,检查,密码的大小,如果两个密码的形式数学等。

我想在某个地方,Viewcontroller搞糟了,把前缀放进去了。但我不知道这可能来自哪里。其他有相同问题的人的pom中没有jasper或错误的文件夹结构,但我仔细检查了这些错误。

共有1个答案

岳枫
2023-03-14

尝试更改以下属性以/开头

spring.mvc.view.prefix= /WEB-INF/jsp/

这将允许spring搜索您的路径的子文件夹。

 类似资料:
  • 问题内容: 我正在使用此代码: 但是在编译时出现此错误: 然后是堆栈跟踪的编译器错误。 我将在课堂开始时同时进行这两种导入: 有什么事吗 在Netbeans中,我看到自动完成选项并且Locale对象没有语法错误… 问题答案: 您的设置有些麻烦,下面的程序对我来说很好用。 它要求源代码的事实使我相信它正在尝试以某种调试模式进行编译或运行。您不需要编译java.util。*的源代码,这很奇怪。 看看我

  • 我对雄猫的东西真的很陌生。我下载了Tomcat7.0 windows installer,并使用默认配置安装了它。安装后,我在浏览器中键入localhost:8080,查看Tomcat是否正常工作。但是,它显示了如下的错误消息:Access error:404--未找到不能定位文档:/并且页面中没有其他显示Tomcat或Apache单词的内容。似乎Tomcat没有回应。 我谷歌搜索了这个论坛,但到

  • http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd“> 我不明白该如何解决这件事,请帮帮我

  • 你好,我有一个奇怪的问题。我正在用eclipse打包一个应用程序,以生成一个可执行的jar文件,当我运行它时,会出现错误“error cant find main class[…]”。 当我从命令行示例运行同一个包时 java-jarapp.jar 程序启动。 奇怪的是,只有在Java 7环境中编译的应用程序才会出现错误。 如果我将项目设置为java 6,一切都正常。 我应该做什么来运行Java

  • 从昨天开始,我一直试图在我的Ubuntu机器上安装JDK8,但它一直失败。 但是我无法继续,因为当运行命令时,我得到的只是: 我的设置是一个64位Ubuntu14.04。

  • Traceback(最近的最后一次调用):文件"C:/用户/AppData/本地/程序/Python/Python37/client.py",第54行,引号=json.loads(urllib.request.urlopen(QUERY.格式(random.random())). read())文件"C:\用户\AppData\本地\程序\Python\Python37\lib\urllib\re