首页 > 解决方案 > 为什么我在运行一个简单的 Spring Boot gradle 项目时会得到 404 状态?

问题描述

我是弹簧靴的新手。我用 gradle build 创建了一个简单的 spring-boot 版本 2.2.6 项目。我创建了一个欢迎 jsp 只是为了打印一个标题。当我使用http://localhost:8081/welcome.html在我的服务器上运行它时,我得到 404 状态以下是我的 build.gradle、应用程序类、控制器类和 application.properties 文件:

//build.gradle    
plugins {
    id 'org.springframework.boot' version '2.2.6.RELEASE'
    id 'io.spring.dependency-management' version '1.0.9.RELEASE'
    id 'java'
    }

    group = 'com.banuprojects'
    version = '0.0.1-SNAPSHOT'
    sourceCompatibility = '11'

    repositories {
        mavenCentral()
    }

    dependencies {
        implementation 'org.springframework.boot:spring-boot-starter-web'
        implementation 'org.apache.tomcat.embed:tomcat-embed-jasper'
        implementation 'javax.servlet:jstl'
        testImplementation('org.springframework.boot:spring-boot-starter-test') {
            exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
        }
    }

    test {
        useJUnitPlatform()
    }

//application class
        package com.banuprojects.lmsdemo;

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

    @SpringBootApplication
    public class LmsdemoApplication {

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

    }

    //controller class
        package com.banuprojects.lmsdemo;

        import org.springframework.stereotype.Controller;
        import org.springframework.web.bind.annotation.RequestMapping;
        import org.springframework.web.servlet.ModelAndView;

        @Controller
        public class TestController {

            @RequestMapping("/welcome.html")
            public ModelAndView firstPage() {
                return new ModelAndView("welcome");
            }

        }

//application.properties
        spring.mvc.view.prefix:/WEB-INF/jsp/
        spring.mvc.view.suffix:.jsp

我不确定我在哪里实施错误。任何帮助将不胜感激。谢谢

标签: javaspringspring-bootgradle

解决方案


正如评论中所讨论的那样。查看应用程序属性文件后,发现在 URL 中传递了错误的端口。
未发现其他技术错误。


推荐阅读