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 8870075
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T17:38:03+00:00 2026-06-14T17:38:03+00:00

I know how to autowire a http request object in Java code: @Resource private

  • 0

I know how to autowire a http request object in Java code:

@Resource
private HttpServletRequest request;

I want to do something similar in the xml conf. The bean I’m trying to instantiate takes a http session object as constructor argument:

    <bean class="..." scope="request">
        <constructor-arg>
             ???
        </constructor-arg>
    </bean>
  • 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-14T17:38:04+00:00Added an answer on June 14, 2026 at 5:38 pm

    You could create a factory class that uses this method:

    http://static.springsource.org/spring/docs/2.5.x/api/org/springframework/web/context/request/RequestContextHolder.html#currentRequestAttributes%28%29

    E.g.:

    <bean id="httpSessionFactory" class="HttpSessionFactory">
        <constructor-arg>true</constructor-arg>
    </bean>
    
    <bean class="..." scope="request">
        <constructor-arg>
            <bean factory-bean="httpSessionFactory"
                  factory-method="getSession"/>
        </constructor-arg>
    </bean>
    

    And the Java:

    public class HttpSessionFactory {
        private boolean create;
    
        public HttpSessionFactory(boolean create) {
            this.create = create;
        }
    
        public static HttpSession getSession() {
            ServletRequestAttributes attr = (ServletRequestAttributes) RequestContextHolder.currentRequestAttributes();
            return attr.getRequest().getSession(create);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to know the best practice of configuring Spring XML configuration files 1-
I know the pet object below is stored to session by using @SessionAttributes, but
I have a REST service which takes a JSON request. I want to validate
I was able to use RestTemplate and autowire it. However I want to move
I want to know what parts of my web page the users use and
So I wanted to do something like this: @Component @Scope(value=request, proxyMode=ScopedProxyMode.INTERFACES) public class MyBean
Using Spring, I've declared a RememberMe bean in my XML: <security:http authentication-manager-ref=authenticationManager> ..... <security:remember-me
Why can't we autowire the static instance variable in the Spring bean. I know
Know this might be rather basic, but I been trying to figure out how
Know if it's possible to access the iPhone compass in Safari using JavaScript? I

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.