Resteasy interceptors, intercepting rest requests, modifying response header content

Source: Internet
Author: User
Tags jboss

Intercept only get requests, and modify the contents of the header to feedback to the client[Java]  View plain copy import java.io.ioexception;   import java.lang.reflect.method;       import javax.ws.rs.get;   import javax.ws.rs.webapplicationexception;    import javax.ws.rs.ext.provider;      import  org.jboss.resteasy.annotations.interception.serverinterceptor;   import  org.jboss.resteasy.spi.interception.acceptedbymethod;   import  org.jboss.resteasy.spi.interception.messagebodywritercontext;   import  org.jboss.resteasy.spi.interception.messagebodywriterinterceptor;      @Provider    @ServerInterceptor    public class myheaderdecorator implements  messagebodywriterinterceptor,           acceptedbymethod  {          public boolean accept (class declaring,  method mEthod)  {           return  Method.isannotationpresent (get.class);       }           public void write (Messagebodywritercontext context)  throws  ioexception,                webapplicationexception {               Context.getheaders (). Add ("My-header",  "Custom");            context.proceed ();       }  }  

Reference http://docs.jboss.org/resteasy/docs/1.1.GA/userguide/html/Interceptors.html

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.