简体   繁体   English

404-not-found-while-running-spring-boot-rest-api

[英]404-not-found-while-running-spring-boot-rest-api

While running springboot restservice application got 404 error.在运行 springboot restservice 应用程序时出现 404 错误。 I am using spring boot, jersey rest. I have tried GET requests http://localhost:8080/dunames but not able to resolve.我正在使用 spring 引导,jersey rest。我尝试了 GET 请求http://localhost:8080/dunames但无法解析。 Please help.请帮忙。

Model Class: Model Class:

@Entity
@Table(name = "du")
public class duname {


    private String duname;
    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    private int id; 
    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public duname()
    {

    }

    public duname(String duname, int id)
    {
    this.duname=duname; 
    this.id=id;
    }


    public String getDuname() {
        return duname;
    }

    public void setDuname(String duname) {
        this.duname = duname;
    }
}

Service Class:客服Class:

public class duservice {

    @Autowired
    private durepo durepository;

    public List<duname> getAlldu()
    {
        List<duname> dunames=new ArrayList<duname>();
        durepository.findAll()
        .forEach(dunames::add);
        return dunames;
    }

    public void addDu(duname dunames)
    {
        durepository.save(dunames);
    }

    public duname getDu(int id)
    {
        return durepository.findOne(id);
    }

    public void deleteDu(int id)
    {
        durepository.delete(id);
    }

    public void updateDu(int id, duname dunames)
    {
        durepository.save(dunames);
    }
}

Controller class: Controller class:

    @RestController
public class ducontroller {


    @Autowired
    private duservice duService;

    private final Logger log=(java.util.logging.Logger) LoggerFactory.getLogger(ducontroller.class);


    @RequestMapping("/dunames")
    public List<duname> getAlldu()
    {
          log.info("Starting");
    return duService.getAlldu();
    }

    @RequestMapping("/duname/{id}")
    public duname getdu(@PathVariable int id)
    {
        return duService.getDu(id);
    }

    @RequestMapping(method=RequestMethod.POST,value="/dunames")
    public void addDuname(@RequestBody duname dunames)
    {
        duService.addDu(dunames);
    }

Repository:存储库:

public interface durepo extends CrudRepository<duname,Integer> {


}

Main Class:总机 Class:

 @SpringBootApplication
public class DuaddApplication {

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

Pom File:文件:

 <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.du</groupId>
    <artifactId>duadd</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>duadd</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.8.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jersey</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <scope>runtime</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>

            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>

        </plugins>
    </build>


</project>

Application Properties:应用属性:

spring.datasource.url=jdbc:postgresql://localhost:2280/todo
spring.datasource.username=test
spring.datasource.password=test
spring.jpa.generate-ddl=true
server.port=8080 

Some console output:一些控制台 output:

2017-10-26 11:06:08.952  INFO 4552 --- [           main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-10-26 11:06:08.975  INFO 4552 --- [           main] com.soprasteria.du.DuaddApplication      : Started DuaddApplication in 7.096 seconds (JVM running for 7.633)
2017-10-26 11:06:32.779  INFO 4552 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring FrameworkServlet 'dispatcherServlet'
2017-10-26 11:06:32.779  INFO 4552 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : FrameworkServlet 'dispatcherServlet': initialization started
2017-10-26 11:06:32.800  INFO 4552 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : FrameworkServlet 'dispatcherServlet': initialization completed in 21 ms

I got the solution.我得到了解决方案。 It was due to package visibility.这是由于包可见性。 Main class was not able to find package in which controller class is present.主类无法找到控制器类所在的包。 So, I added all classes under the same package.所以,我在同一个包下添加了所有类。 You can also place application class one level up.您还可以将应用程序类上一级。

Got help from below link:从以下链接获得帮助:

Spring Boot: Cannot access REST Controller on localhost (404) Spring Boot:无法访问本地主机上的 REST 控制器 (404)

There is serval reason associated with error 404, in my case I created a spring boot starter project in eclipse and forget to include spring-boot-starter-web in my project.I solved the issue after adding dependency in pom.xml有与错误 404 相关的服务原因,在我的情况下,我在 eclipse 中创建了一个 spring 启动启动项目,忘记在我的项目中包含 spring-boot-starter-web。我在 pom.xml 中添加依赖项后解决了这个问题

org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-web

A lot of people said file management but I found my issue to be not including a path for my @GetMapping很多人说文件管理,但我发现我的问题不包括我的@GetMapping的路径

For example, instead of @GetMapping I had: @GetMapping("/")例如,我没有使用@GetMapping@GetMapping("/")

This issue held me back so much and though might not solve yours's, I'm sure and hoping will help someone.这个问题让我退缩了很多,虽然可能无法解决你的问题,但我相信并希望能帮助别人。 Thanks谢谢

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

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