春季启动:始终获得404状态

时间:2019-09-29 16:39:02

标签: spring-boot

我试图在我的机器上设置Spring Boot基本示例。设置完成后,我得到了404状态代码。

我尝试了堆栈溢出时提供的许多解决方案。但是他们都没有解决我的问题。 TIA,请帮助我。

我尝试了将子包结构转换为主要的mathod当前包。 我尝试将scanBasePackages添加到@SpringBootApplication。还是没有运气。

我的代码:Main Class。我尝试通过不带scanBasePackages和带scanBasePackages来使用。

package com.online.sbo;

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

@SpringBootApplication(scanBasePackages  = {"com.online.sbo"})
public class OnlineSboApplication {

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

我的控制器:在服务器日志中,未显示该控制器已注册。

package com.online.sbo;

import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

@RestController("/home")
public class HomeController {
    @GetMapping(value="/render", produces = 
MediaType.APPLICATION_JSON_VALUE)
    @ResponseBody
    public String renderHomre() {
        return "gfvbytfgh";
    }    
}

我的Pom.xml:我没有在项目中添加任何安全性。我已经从start.spring.iosite创建了这个项目。

<?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.1.8.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.online.sbo</groupId>
    <artifactId>OnlineSbo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>war</packaging>
    <name>OnlineSbo</name>
    <description>Odisha Bank</description>
    <properties>
        <java.version>1.8</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-tomcat</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

Application.properties:-此文件中没有条目。

1 个答案:

答案 0 :(得分:0)

您使用@RestController属性错误。 这应该起作用:

@RestController
@RequestMapping("/home")
public class HomeController {
     @GetMapping(value="/render", produces =
        MediaType.APPLICATION_JSON_VALUE)
@ResponseBody
public String renderHomre() {
    return "gfvbytfgh";
}
}

ps:在您的示例中,localhost:8080/render也应该起作用。