繁体   English   中英

为什么我在运行一个简单的 spring 启动 gradle 项目时得到 404 状态?

[英]Why am I getting 404 status on running a simple spring boot gradle project?

我是 spring-boot 的新手。 我用 gradle 构建了一个简单的 spring-boot 版本 2.2.6 项目。 我创建了一个欢迎 jsp 只是为了打印 header。 I get 404 status when i run it on my server with http://localhost:8081/welcome.html Following is my build.gradle, application class, controller class and application.properties file:

//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

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

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM