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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:22:52+00:00 2026-05-26T10:22:52+00:00

Is there any way to reference the current application context in a bean config

  • 0

Is there any way to reference the current application context in a bean config file in Spring?

I am trying to do something like this:

<beans
    xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:util="http://www.springframework.org/schema/util"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">

    <bean id="some-bean-name" class="com.company.SomeClass">
        <constructor-arg>
            <!-- obviously this isn't right -->
            <bean ref=#{this}/>
        </constructor-arg>
    </bean>

The issue is that SomeClass needs an ApplicationContext instance in its constructor. Is there any way to get the reference of the ApplicationContext that is loading the beans? I know that I can do all of the loading in the XML, but that is not quite what I am after as I need to do the bean loading in my java code.

  • 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-05-26T10:22:53+00:00Added an answer on May 26, 2026 at 10:22 am

    Have you looked at implementing ApplicationContextAware? It doesn’t come in on the constructor, but it does happen before an init() call, and will happen just after bean properties are populated.

    Invoked after population of normal bean properties but before an init
    callback such as InitializingBean.afterPropertiesSet() or a custom
    init-method. Invoked after
    ResourceLoaderAware.setResourceLoader(org.springframework.core.io.ResourceLoader),
    ApplicationEventPublisherAware.setApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher)
    and MessageSourceAware, if applicable.

    public class SomeClass implements ApplicationContextAware {
        //your class definition
        private ApplicationContext myContext;
    
        public void setApplicationContext(ApplicationContext context) throws BeansException {
            myContext = context;
            //load beans here maybe?
        }
    }
    

    You can also just @Autowire(d) it if using Spring 2.5 or later.

    public class SomeClass {
        //your class definition
        @Autowired
        private ApplicationContext myContext;
    }
    

    Of course, doing either of these will tie your code to Spring.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way to write an expression that gets the current context/workflowid? I'd
Is there any other way to reference the current object in php other than
is there any way to reference a class name from within the class declaration?
Is there any way to add reference from one winforms to another winforms?? There
Is there any way to make a DataTemplate reference itself just from XAML? In
Is there any way to indicate to ReSharper that a null reference won't occur
Is there any way in JavaScript to create a "weak reference" to another object?
Is there any way to embed Flash completely in HTML, without reference to an
Is there any way to check whether a file is locked without using a
Is there any way to access the current instance of CodeIgniter from an error

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.