Greetings.

Here's my endpoint:

@Path("/foo")
@Produces(MediaType.TEXT_PLAIN)
public class Foo {

@GET
@Path("/bar")
  public String bar() {
    return "hello world"
  }
}

How do I get HttpServletRequest, HttpServletResponse, etc. from within my 
advice without changing bar's signature?

Regards,
Shackman
_______________________________________________
aspectj-users mailing list
aspectj-users@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to