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

  • Home
  • SEARCH
  • 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 8927185
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:09:43+00:00 2026-06-15T08:09:43+00:00

Recently I came across this requirement, where we have a Foo bean and a

  • 0

Recently I came across this requirement, where we have a Foo bean and a Bar bean; both are Singletons, and Bar needs to be injected into Foo.

However, Bar is a heavyweight bean for resource/memory, hence we need to delay its instantiation to the point where Foo actually calls a method on it. The catch is, Foo has to be eagerly instantiated. So what are different ways to do it?

I’ve shared my solution in an answer below. It will be great to learn of any other approaches.

  • 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-15T08:09:44+00:00Added an answer on June 15, 2026 at 8:09 am

    In essence, this is what I did:

    1) make Bar lazily instantiated,

    2) use a LazyInitTargetSource and point it to the bean above,

    3) use a `ProxyFactoryBean’ which points to the target source above,

    4) make Foo eagerly instantiated and inject the proxy above into it.

    This solution is more verbose and more complex than using lookup-method solution. However lookup-method solution is difficult to unit test and I feel that it couples more tightly with Spring compared to the other solution.

    Following is the confuguration:

    <bean id="barTarget" class="bar.Bar" lazy-init="true">
        <constructor-arg value="423" />
    </bean>
    <bean id="singletonTargetSource" class="org.springframework.aop.target.LazyInitTargetSource">
        <property name="targetBeanName" value="barTarget" />
    </bean>
    <bean id="bar" class="org.springframework.aop.framework.ProxyFactoryBean">
        <property name="targetSource" ref="singletonTargetSource" />           
    </bean>
    <bean id="foo" class="foo.Foo">
        <property name="bar" ref="bar" />
    </bean>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I came across this recently, up until now I have been happily overriding the
I recently came across this magical operator when digging into Groovy: <=> Groovy has
recently I came across this term,but really have no idea what it refers to.I've
I recently came across this line in a PHP script: $_REQUEST['start_date']=$date; Is it allowed
I recently came across this article , discussing how to leverage mod_cluster to create
I've been developing with PHP for some years now, and recently came across this
Recently I came across this error in my WCF trace: There was an error
Recently I came across this video on Programming Paradigms and the prof. used terms
I recently came across a question about sequence points in C++ at this site,
Recently I was trying some practice programs in python and I came across this

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.