Spring Boot(Webflux)休息控制器获取远程IP地址

时间:2018-09-04 14:25:13

标签: java spring spring-boot spring-webflux

将spring boot用于简单的REST应用程序。

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.0.4.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-webflux</artifactId>
    </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>

我有一个处理请求的简单控制器。

@RestController
@RequestMapping("/api")
public class MainController {

    @RequestMapping("/test")
    public BasicDTO getBasic(HttpServletRequest request){
        System.out.println(request.getRemoteAddr());
        return new BasicDTO();
    }

}

HttpServletRequest上下文不会被注入。如何将请求上下文注入方法,以便可以访问一些基本的套接字详细信息?谢谢。

1 个答案:

答案 0 :(得分:4)

在您的pom.xml上,它使用的是spring-boot-starter-webflux,因此您必须使用ServerHttpRequest而不是HttpServletRequest

或包含

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>

并删除spring-boot-starter-webflux依赖性。