Как добавить заголовки запроса в фильтр и получить этот заголовок в контроллере - PullRequest
0 голосов
/ 28 апреля 2020

Я использую следующую обертку, чтобы добавить заголовки, ее добавляющие заголовки в запросе

final class MutableHttpServletRequest extends HttpServletRequestWrapper {
    // holds custom header and value mapping
    private final Map<String, String> customHeaders;

    public MutableHttpServletRequest(HttpServletRequest request){
        super(request);
        this.customHeaders = new HashMap<String, String>();
    }

    public void putHeader(String name, String value){
        this.customHeaders.put(name, value);
    }

    public String getHeader(String name) {
        // check the custom headers first
        String headerValue = customHeaders.get(name);

        if (headerValue != null){
            return headerValue;
        }
        // else return from into the original wrapped object
        return ((HttpServletRequest) getRequest()).getHeader(name);
    }

    public Enumeration<String> getHeaderNames() {
        // create a set of the custom header names
        Set<String> set = new HashSet<String>(customHeaders.keySet());

        // now add the headers from the wrapped request object
        @SuppressWarnings("unchecked")
        Enumeration<String> e = ((HttpServletRequest) getRequest()).getHeaderNames();
        while (e.hasMoreElements()) {
            // add the names of the request headers into the list
            String n = e.nextElement();
            set.add(n);
        }

        // create an enumeration from the set and return
        return Collections.enumeration(set);
    }
}

с фильтром

@Override
public void doFilter(ServletRequest request, ServletResponse response,
        FilterChain chain) throws IOException, ServletException {
    HttpServletRequest req = (HttpServletRequest) request;
    MutableHttpServletRequest mutableRequest = new MutableHttpServletRequest(req);
    ...
    mutableRequest.putHeader("x-user-id", "1");
    chain.doFilter(mutableRequest, response);
}

, но я не могу получить этот заголовок в контроллере, который дает нулевое значение, так Кто-нибудь, пожалуйста, скажите мне, как установить заголовки в фильтре и получить доступ к этому заголовку в контроллере.

1 Ответ

1 голос
/ 28 апреля 2020

Когда вы отправляете запрос в контроллер, отправляется первый запрос OPTIONS, в котором фильтр не найдет значения, которые вы установили. Fist пропустите запрос опции, затем попробуйте.

@Override
public void doFilter(ServletRequest request, ServletResponse response,
        FilterChain chain) throws IOException, ServletException {
    HttpServletRequest req = (HttpServletRequest) request;

        if(!"OPTIONS".equalsIgnoreCase(request.getMethod())) {
    MutableHttpServletRequest mutableRequest = new MutableHttpServletRequest(req);
    ...
    mutableRequest.putHeader("x-user-id", "1");
    chain.doFilter(mutableRequest, response);
        }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...