如何在 Spring Boot 应用程序中关闭客户端 sse 连接

问题描述

我有一个 spring boot 应用程序,我必须使用 SSE 连接到一些外部服务。 WebClient 建立连接,然后我使用 Flux 来读取响应。一切正常,但问题是连接保持打开状态,因为该过程并非旨在在该 3rd 方服务中每次都到达终点。我想作为客户端手动关闭连接,因为我知道这个连接应该何时完成。我该怎么做?

建立连接:

private Flux<ServerSentEvent<String>> connect(String accesstoken) {
    TcpClient timeoutClient = createTimeoutClient();
    ReactorClientHttpConnector reactorClientHttpConnector = new ReactorClientHttpConnector(HttpClient.from(timeoutClient));
    String url = npzServerBaseUrl+uniqueCodePath;
    WebClient client = WebClient
            .builder()
            .clientConnector(reactorClientHttpConnector)
            .defaultHeader(HttpHeaders.AUTHORIZATION,Naming.TOKEN_PREFIX + accesstoken)
            .baseUrl(url)
            .build();

    ParameterizedTypeReference<ServerSentEvent<String>> type
            = new ParameterizedTypeReference<ServerSentEvent<String>>() {};
    return client.get()
            .retrieve()
            .onStatus(HttpStatus::is4xxClientError,clientResponse -> {
                String msg = "Error from server: "+clientResponse.statusCode().toString();
                        //invalidate access token
                        if (clientResponse.statusCode().value()==401) {
                            //remove invalid token and connect again
                            loginContext.invalidToken(accesstoken);
                            return Mono.error(new InvalidNpzToken(msg));
                        }
                        return Mono.error(new IllegalStateException(msg));
                    }
            )
            .onStatus(HttpStatus::is5xxServerError,clientResponse ->
                    Mono.error(new IllegalStateException("Error from server: "+clientResponse.statusCode().toString()))
            )
            .bodyToFlux(type);
}

private TcpClient createTimeoutClient() {
    return TcpClient.create()
            .option(ChannelOption.CONNECT_TIMEOUT_MILLIS,SECONDS*1000)
            .option(EpollChannelOption.TCP_USER_TIMEOUT,SECONDS*1000)
            .doOnConnected(
                    c -> c.addHandlerLast(new ReadTimeoutHandler(SECONDS))
                            .addHandlerLast(new WriteTimeoutHandler(SECONDS)));
}

处理内容

Flux<ServerSentEvent<String>> eventStream = connect(accesstoken);

    eventStream.subscribe(
            content -> {
                log.info("Time: {} - event: name[{}],id [{}],content[{}] ",LocalTime.Now(),content.event(),content.id(),content.data());
                if ("uuid".equals(content.event().trim())) {
                    listener.receivedUniqueCode(content.data().trim());
                } else if ("code".equals(content.event().trim())) {
                    listener.receivedCode(content.data().trim());
                }
            },(Throwable error) -> {
                if (error instanceof InvalidToken) {
                    log.error("Error receiving SSE",error);
                    //let's retry connection as token has expired
                    getCode(request,listener);
                }
            },() -> log.info("Connection closed!"));

我期望的是我可以调用 connection.close() 或类似的东西,然后连接将被关闭

谢谢

如果需要,请提供更多信息。

进口:

import io.netty.channel.ChannelOption;
import io.netty.channel.epoll.EpollChannelOption;
import io.netty.handler.timeout.ReadTimeoutHandler;
import io.netty.handler.timeout.WriteTimeoutHandler;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.client.reactive.ReactorClientHttpConnector;
import org.springframework.http.codec.ServerSentEvent;
import org.springframework.stereotype.Component;
import org.springframework.web.reactive.function.client.WebClient;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
import reactor.netty.http.client.HttpClient;
import reactor.netty.tcp.TcpClient;

弹簧靴:

<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.1.RELEASE</version>

解决方法

eventStream.subscribe() 返回一个 reactor.core.Disposable

您可以对其调用 dispose() 以取消订阅和底层资源。