Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9113531
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T03:59:12+00:00 2026-06-17T03:59:12+00:00

I want to hijack an HTTPServletRequest and log some values from it using AspectJ.

  • 0

I want to hijack an HTTPServletRequest and log some values from it using AspectJ. However, what ends up in the JoinPoint is a “RequestFacade” object. There doesn’t seem to be much that I can do with this object. Is my logging strategy all wrong? How can I get useful information from the HttpServletRequest? If I have to unwrap it prior to calling a method, that sort of defeats the purpose of AOP in my application.

I am using a Glassfish server, if that makes a difference.

@Before("execution(* Service.testAuditRecord(..))")
public void logBefore(JoinPoint joinPoint) {
    System.out.println("logBefore  --->"  + joinPoint.getSignature().getName());
    System.out.println("logBefore--->Args : " + Arrays.toString(joinPoint.getArgs()));
}

The RequestFacade record

INFO: logBefore  --->testAuditRecord
INFO: logBefore--->Args : [org.apache.catalina.connector.RequestFacade@4dbfa7d0]
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T03:59:13+00:00Added an answer on June 17, 2026 at 3:59 am

    HttpServletRequest is an interface. Each servlet container has its own implementation. org.apache.catalina.connector.RequestFacade is one of them.

    That being said you are free to use any of the methods of HttpServletRequest, without bothering about the actual implementation.

    What is the signature of Service.testAuditRecord()? Does it take HttpServletRequest as an argument? If so, AspectJ should give you a strongly typed instance without much hassle. Try this:

    @Before("execution(* Service.testAuditRecord(..)) && args(request)")
    public void logBefore(JoinPoint joinPoint, HttpServletRequest request) {
      //...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

As I don't want to hijack another thread here comes my question about mappings.
Want to run javascript function from parent window in child window Example I have
Want to open firefox from terminal at linux with firebug enabled // Terminal $
want to know why String behaves like value type while using ==. String s1
Want to remove p2 variable from url string, below are 3 cases if case
This may sound silly but I didn't want to hijack a question. I recently
This is related to What is call/cc? , but I didn't want to hijack
I've been using the same php script to send emails from contact forms for
want to remove all css rules from inline css but not to remove display
I know there is .on and .live (deprecated) available from JQuery, but those assume

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.