java - http 请求拦截器 - 使用 cxf 的 Restful Web 服务

标签 java rest cxf

尝试向我的 Restful 服务收到的每个请求添加 header 。下面的入站 http 拦截器被调用,但不添加 header 。

    package com.client.interceptors;

    import java.util.Collections;
    import java.util.List;
    import java.util.Map;

    import org.apache.cxf.interceptor.Fault;
    import org.apache.cxf.message.Message;
    import org.apache.cxf.phase.AbstractPhaseInterceptor;
    import org.apache.cxf.phase.Phase;

    public class ClientInterceptor extends AbstractPhaseInterceptor<Message> {
        public ClientInterceptor() {
            super(Phase.PRE_INVOKE); // Put this interceptor in this phase
            System.out.println("inside constructor");
        }

        public void handleMessage(Message msg) throws Fault {
            // process the message

            System.out.println("inside interceptor");
            Map<String, List> headers = (Map<String, List>) msg
            .get(Message.PROTOCOL_HEADERS);

            headers.put("token",
            Collections.singletonList("abcd1234xyz56sa"));

            msg.put(Message.PROTOCOL_HEADERS, headers);

        }
    }

如何实现这一目标?

最佳答案

嗯,我有一个解决方案。看看这个。这可能会有所帮助。

Client client = Client.create();
     WebResource webResource =client.resource("URL");

     MultivaluedMap<String, String> queryParams = new MultivaluedMapImpl();
     queryParams.add("json", js); //set parametes for request

     appKey = "Addkey " + appKey; // appKey is unique number

     //Get response from RESTful Server get(ClientResponse.class);
     ClientResponse response = null;
     response = webResource.queryParams(queryParams)
                            .header("Content-Type", "application/json;charset=UTF-8")
                            .header("Authorization", appKey)
                            .get(ClientResponse.class);

     String jsonStr = response.getEntity(String.class);

关于java - http 请求拦截器 - 使用 cxf 的 Restful Web 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25967073/

相关文章:

https - 如何通过 https 使用 wsdl2java 生成客户端代码?

spring - 如何确保 https 仅用于 apache tomcat 中的某些 Web 服务

java - 如何正确结束 Eclipse 启动配置执行?

javascript - AngularJS + Parse API 调用服务不受 userId 的限制

java - Jersey 过期 header 不起作用

rest - 如何在 elasticsearch 中设置分词器

java - jax-ws webservice 中的泛型类会发生什么变化?

java - 扫描仪在使用 next() 或 nextFoo() 后跳过 nextLine()?

java - Spring Boot CRUD操作创建Web服务配置

java - Kotlin/Java - 如何识别全角字符?