Rest控制器无法识别Spring Boot应用程序中的GET请求

7fhtutme  于 2022-09-18  发布在  Java
关注(0)|答案(11)|浏览(184)

我试图用Spring Boot实现一个简单的演示MVC应用程序,但在执行应用程序时出现404错误。uri为“http://localhost:8080/”,用于显示名为circle的表中的所有行。

  • Spring Boot:1.3.3.释放
  • Java版本:1.8.0_65
  • 数据库:Apache Derby 10.12.1.1

Maven Java项目:

Application.java

package com.nomad.dubbed.app;

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

@SpringBootApplication
public class Application  {

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

}

CircleController.java

package com.nomad.dubbed.controller;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import com.nomad.dubbed.dao.CircleService;
import com.nomad.dubbed.model.Circle;

@RestController
@RequestMapping("/")
public class CircleController {
    @Autowired
    private CircleService circleService;

    @RequestMapping(method=RequestMethod.GET)
    public List<Circle> getAll() {
        return circleService.getAll();
    }

}

CircleRepository.java

package com.nomad.dubbed.dao;

import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

import com.nomad.dubbed.model.Circle;

@Repository
public interface CircleRepository extends JpaRepository<Circle, Integer> {

}

CircleService.java

package com.nomad.dubbed.dao;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

import com.nomad.dubbed.model.Circle;

@Service
public class CircleService {
    @Autowired
    private CircleRepository circleRepository;

    @Transactional(propagation=Propagation.REQUIRED)
    public List<Circle> getAll(){
        return circleRepository.findAll();
    }

}

Circle.java

package com.nomad.dubbed.model;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name="circle")
public class Circle {
    @Id
    @GeneratedValue(strategy=GenerationType.IDENTITY)
    private int id;
    private String name;

    public Circle(int id, String name) {
        super();
        this.id = id;
        this.name = name;
    }

    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }

}

application.properties

spring.datasource.url=jdbc:derby://localhost:1527/db
spring.datasource.driverClassName=org.apache.derby.jdbc.ClientDriver

logging.level.org.springframework.web:DEBUG
logging.level.org.hibernate:DEBUG

pom.xml

<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.nomad.dubbed</groupId>
  <artifactId>spring-boot-mvc</artifactId>
  <version>0.0.1-SNAPSHOT</version>

    <properties>
        <derby-client.version>10.11.1.1</derby-client.version>
    </properties>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.3.3.RELEASE</version>
        <relativePath />
    </parent>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-remote-shell</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>

        <dependency>
            <groupId>org.apache.derby</groupId>
            <artifactId>derbyclient</artifactId>
            <version>${derby-client.version}</version>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <finalName>spring-boot-mvc</finalName>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

数据库已启动并正在运行,表圈中有5行:

默认uri(/beans,/health..)工作正常,但无法识别实现的控制器。控制台中没有显示这样的错误,下面是我发送请求后在控制台中打印的日志转储。

2016-05-03 14:17:26.594 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/]
2016-05-03 14:17:26.596 DEBUG 659 --- [nio-8080-exec-3] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /
2016-05-03 14:17:26.596 DEBUG 659 --- [nio-8080-exec-3] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/]
2016-05-03 14:17:26.597 DEBUG 659 --- [nio-8080-exec-3] o.s.w.s.handler.SimpleUrlHandlerMapping  : Matching patterns for request [/] are [/**]
2016-05-03 14:17:26.597 DEBUG 659 --- [nio-8080-exec-3] o.s.w.s.handler.SimpleUrlHandlerMapping  : URI Template variables for request [/] are {}
2016-05-03 14:17:26.597 DEBUG 659 --- [nio-8080-exec-3] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapping [/] to HandlerExecutionChain with handler [ResourceHttpRequestHandler [locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@6c13019c]]] and 1 interceptor
2016-05-03 14:17:26.597 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/] is: -1
2016-05-03 14:17:26.597 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2016-05-03 14:17:26.597 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet        : Successfully completed request
2016-05-03 14:17:26.597 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/error]
2016-05-03 14:17:26.600 DEBUG 659 --- [nio-8080-exec-3] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /error
2016-05-03 14:17:26.600 DEBUG 659 --- [nio-8080-exec-3] s.w.s.m.m.a.RequestMappingHandlerMapping : Returning handler method [public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)]
2016-05-03 14:17:26.600 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/error] is: -1
2016-05-03 14:17:26.601 DEBUG 659 --- [nio-8080-exec-3] o.s.w.s.v.ContentNegotiatingViewResolver : Requested media types are [text/html, text/html;q=0.8] based on Accept header types and producible media types [text/html])
2016-05-03 14:17:26.601 DEBUG 659 --- [nio-8080-exec-3] o.s.w.s.v.ContentNegotiatingViewResolver : Returning [org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$SpelView@2f5f8d71] based on requested media type 'text/html'
2016-05-03 14:17:26.601 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet        : Rendering view [org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$SpelView@2f5f8d71] in DispatcherServlet with name 'dispatcherServlet'
2016-05-03 14:17:26.601 DEBUG 659 --- [nio-8080-exec-3] o.s.web.servlet.DispatcherServlet        : Successfully completed request
8hhllhi2

8hhllhi21#

为控制器使用不同的url。spring引导中的“/”Map到META-INF/resources和src/main/resource/static/中的静态资源。
编辑:忘记上面的内容,在应用程序类中执行以下操作:

Application.java

package com.nomad.dubbed.app;

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

@SpringBootApplication
@ComponentScan("com.nomad.dubbed")
public class Application  {

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

}

spring boots组件扫描未发现您的rest控制器。根据本文档http://docs.spring.io/spring-boot/docs/current/reference/html/…spring扫描带有@SpringBootApplication注解的类所在包下方的包。您的控制器位于并行包中。

kxxlusnw

kxxlusnw2#

我们不应将@ComponentScan注解与@SpringBootApplication一起使用,因为这不是正确的做法。@SpringBootApplication是三种注解的组合:@ComponentScan@EnableAutoConfiguration@Configuration
具有@SpringBootApplication注解的主类应位于父/超级包中。

  • e、 g.*-com.spring.learning是父包,其子包为com.spring.learning.controllercom.spring.learning.servicecom.spring.learning.pojo

因此,它扫描其包和子包。
这是最佳实践——项目布局或结构是Spring Boot中的一个突出概念。

ecfsfe2w

ecfsfe2w3#

这就是后面发生的事情。
@SpringBootApplication注解是@Configuration``@EnableAutoConfiguration1D3D1E的组合。
没有参数的@ComponentScan告诉框架在同一个包及其子包中查找组件/bean。
带有@SpringBootApplication注解的Application类位于com.nomad.dubbed.app包中。因此,它扫描该包及其下的子包(如com.nomad.dubbed.app.*)。但您的CircleController位于默认情况下未扫描的包com.nomad.dubbed.controller内。您的存储库也在默认扫描包之外,因此它们也不会被spring framework发现。
现在该怎么办?,你有两个选择。

备选方案1

Application类移动到顶部目录(包)。在您的com.nomad.dubbed包中。然后,由于所有控制器和其他存储库都在子包中,因此框架将发现它们。

备选方案2

使用带有basePackages参数的@ComponentScan注解,以及Application类中的@SpringBootApplication,如下所示。

@SpringBootApplication
@ComponentScan(basePackages="com.nomad.dubbed")
public class Application  {

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

6tdlim6h4#

请检查您的控制器类是否在子包中。
例如,如果主类是com。如果是myapp包,则控制器类要么在同一个包中,要么在子包中,如com.myapp.controllers。Spring框架将扫描根包,然后扫描其所有子包。在这种情况下,一切正常,您不需要使用**@ComponentScan**。
如果将主类放在**.com中。myapp**和其他想要自动连接的Bean/控制器可以放在不同的包中,比如com。不是com的子包的bean。myapp,则在找不到bean时会遇到问题。
谢谢Bageeradha

t9eec4r0

t9eec4r05#

我必须进一步研究为什么spring-boot无法识别具有原始包结构的控制器。我将所有java类转储到一个包中,最终使演示项目运行。

修改的Java项目结构:

循环控制器。java类也被修改。我已从循环表中删除了所有记录,但未提及具体的请求方法method=RequestMethod.GET

package com.nomad.dubbed.app;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class CircleController {
    @Autowired
    private CircleService circleService;

    @RequestMapping(value="/circles", method=RequestMethod.GET)
    public List<Circle> getAll() {
        return circleService.getAll();
    }

}
qybjjes1

qybjjes16#

我遇到了同样的问题,我在应用程序类中添加了**@ComponentScan(basePackages=“package.name”)**。之后,我的rest控制器被识别。
包com.nomad.documented.app;

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

@SpringBootApplication
@ComponentScan(basePackages = "com.spring.basepkg")
public class Application  {

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

}
8oomwypt

8oomwypt7#

能否尝试添加@ResponseBody注解

@RequestMapping(method=RequestMethod.GET)
@ResponseBody
    public List<Circle> getAll() {
        return circleService.getAll();
    }
a0zr77ik

a0zr77ik8#

在我看来,当我们将组件扫描留给Spring时,这个可见性问题就会出现,Spring有一种使用标准约定查找类的特殊方法。在这种情况下,启动类(应用程序)位于com.nomad.documented中。应用程序包,将控制器放在下面一级,将帮助Spring使用默认组件扫描机制查找类。将CircleController置于com.nomad.documented.app下。控制器应解决该问题。

c3frrgcw

c3frrgcw9#

我也有类似的问题。在应用程序类上添加注解**@SpringBootApplication(scanBasePackages={“com.nomad.dumped”})**对我很有用。

vsikbqxv

vsikbqxv10#

实际上,springboots会扫描核心包下的所有组件,例如:
包com.nomad.documented.app;
如果您将控制器、服务和dao包添加到com.nomad.titled.app下。控制器,com.nomad.documented.app。服务,com.nomad.documented.app.dao。
然后,您可以轻松地运行rest控制器,但如果您将所有包并行添加到核心springboot包中,如com.nomad.documented。控制器,com.nomad.documented.services。
然后您需要扫描@ComponentScan({“com.nomad.documented.controllers”,“com.noma.documentd.services”})
如果您选择使用componentscan,那么您还必须扫描springboot应用程序包。
所以最好的方法是在spring boot应用程序下创建所有包,命名为.app.xyz。。。

qgelzfjb

qgelzfjb11#

问题在于,Spring boot扫描包含main方法的文件所在的包。
在我的例子中:演示。这是一个示例包。因此,应在该包内创建控制器,以便进行扫描。
当主文件位于com.example下时。演示包,未识别StudentController。

相关问题