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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T06:07:02+00:00 2026-05-12T06:07:02+00:00

I have a hierarchy of application contexts. The bean that is defined in the

  • 0

I have a hierarchy of application contexts. The bean that is defined in the parent context depends on a bean that is defined in the child. Here’s how it looks like:

  public class X {

     public static class A {
        public B b;
        public void setB(B b) { this.b = b; }
     }

     public static class B { }

     public static void main(String[] args) {
        ClassPathXmlApplicationContext parent = new ClassPathXmlApplicationContext(
           "/a.xml");
        go1(parent);
     }

     public static void go1(ClassPathXmlApplicationContext parent) {
        GenericApplicationContext child = new GenericApplicationContext(parent);

        child.getBeanFactory().registerSingleton("b", new B());

        A a = (A) child.getBean("a");
        Assert.assertNotNull(a.b);
     }
  }

The xml file defining the “a” bean looks like this:

  <?xml version="1.0" encoding="UTF-8"?>

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

    <bean id="a" class="X$A" autowire="byName" lazy-init="true"/>


  </beans>

The problem is that B is not injected into A. Injection will occur only if I register the “b” singleton with the parent – which is not an option in my program.

Any ideas?

  • 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-12T06:07:02+00:00Added an answer on May 12, 2026 at 6:07 am

    You can’t do that. Parent contexts cannot refer to bean definitions in the child contexts. It only works the other way around.

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

Sidebar

Related Questions

I have an hierarchy of classes that looks like the following: class Critical {
I have a hierarchy of classes mapped into hibernate that looks kind of like
I have a hierarchy of objects that I would like to show using a
I'm going to create several Spring contexts with one parent context. Here is how
I have an application that saves its context to XML. In this application, there
I have a Python application that is currently installed following Linux Filesystem Standard Hierarchy
I have a pretty deep object hierarchy in my application, and I am having
Lets say I have hierarchy like this (This is just a test program. Please
I have a hierarchy of templated classes that are constructed in one place and
I have an hierarchy of classes that I fetch from database by LINQ to

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.