客户端响应过滤器读取实体问题(泽西)

Posted

技术标签:

【中文标题】客户端响应过滤器读取实体问题(泽西)【英文标题】:Client response filter read entity problem (Jersey) 【发布时间】:2021-05-16 04:46:49 【问题描述】:

我正在使用 Jerseys 客户端过滤器进行缓存。 请求读取和响应缓存值。 如何从客户端响应过滤器中读取实体主体,在使用来自客户端构建器的普通客户端调用时没有读取、getEntity 等方法。 我发现可能有用的唯一方法是 getEntityStream 但运气不佳。 使用 EhCache 缓存即时消息。 我是新手用户帮助:)

请求:

公共类ClientCacheResponseFilter实现ClientResponseFilter

private Ehcache ehcache;

public ClientCacheRequestFilter(Ehcache ehcache) 
    this.ehcache = ehcache;


@Override
public void filter(ClientRequestContext request) throws IOException 
    System.out.println("REQUEST FILTER");

    if (!request.getMethod().equalsIgnoreCase("GET")) 
        return;
    
    String key = request.getUri().toString();
    System.out.println("REQ KEY: " + key);

    System.out.println("LOOKING FOR CACHE");
    if (!ehcache.getClientCache().containsKey(key)) 
        System.out.println("EMPTY CACHE");
        return;
    

    Cache<String, Object> cache = ehcache.getClientCache();
    Object value = cache.get(key);
    if (value != null) 

        System.out.println("REQUEST FILTER - SECOND TIME READING CACHE");
        System.out.println("CACHE ENTRY VALUE: " + value);

        Response response = Response.ok()
                .entity(value)
                .type(MediaType.APPLICATION_JSON)
                .build();

        System.out.println("SENDING ENTITY");
        request.abortWith(response);
    

回应:

private Ehcache ehcache;

public ClientCacheResponseFilter(Ehcache ehcache) 
    this.ehcache = ehcache;


@Override
public void filter(ClientRequestContext request, ClientResponseContext response) throws IOException 
    System.out.println("RESPONSE FILTER");
    if (!request.getMethod().equalsIgnoreCase("GET")) 
        return;
    

    if (response.getStatus() == 200) 

        System.out.println("CACHING VALUE");
        String key = request.getUri().toString();

        ehcache.getClientCache().put(key,  ?);  // GET ENTITY FROM RESPONSE ?
        
    

客户来电:

    WebTarget webTarget = CLIENT.target(API_URL).path("games");
    Invocation.Builder builder = webTarget.request(MediaType.APPLICATION_JSON);
    
    try (Response response = builder.get()) 
        
        if (response.getStatus() == 200) 
            return response.readEntity(new GenericType<List<Game>>() 
            );
        
    
    return Collections.EMPTY_LIST;

【问题讨论】:

嗨@bojan985,如果您可以提供一些代码以便我们了解您正在尝试(尝试)做什么,那将很有帮助。 【参考方案1】:

假设您使用的是 Jersey 2.x,ClientResponseContext 可以转换为 Jersey 特定的 ClientResponse,它具有 readEntity(..) 方法(类似于客户端 Response#readEntity() 方法)。您也可以在阅读实体之前致电bufferEntity()。这样客户端将能够再次读取实体。

例如,如果你想得到 JSON 字符串响应,你可以简单地做

// in response filter
ClientResponse res = (ClientResponse) response;
res.bufferEntity();
String jsonResponse = res.readEntity(String.class);

【讨论】:

像魅力一样工作 :) 非常感谢 m8,让我免于痛苦:)

以上是关于客户端响应过滤器读取实体问题(泽西)的主要内容,如果未能解决你的问题,请参考以下文章

什么是泽西过滤器?

泽西岛和过滤器异常处理

泽西岛日志过滤器的 Maven 依赖项

javax servlet过滤器与泽西过滤器

spring-security-jwt的总结与实现

过滤器