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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T23:51:05+00:00 2026-06-04T23:51:05+00:00

We are using spring for our IOC container in an MVC3 project. I am

  • 0

We are using spring for our IOC container in an MVC3 project. I am trying to make a base controller that will have a constructor dependency on our IUserIdentity interface. I would like to define the constructor dependency once in the application context file for the abstract class and was hoping spring would be able to inject that for each derived class.

public abstract class ControllerBase : Controller
{
    private readonly IUserIdentity _userContext;

    public ControllerBase(IUserIdentity userContext)
    {
        _userContext = userContext;
    }
}

public class ChildController : ControllerBase
{
   private readonly IChildDependency _childService;
   public ChildController(IUserIdentity userContext, IChildDependency childService)
    : base(userContext)
   {
       _childService= childService;
   }
}

I was hoping there was a way to define something like the following – (not sure how it would work) without re-defining the UserIdentity for every derived class.

<object id="ControllerBase" abstract="true" singleton="false" >
    <constructor-arg index="0">
      <ref object="DefaultUserIdentity"/>
    </constructor-arg>
</object>
<object id="ChildController" singleton="false"  >
    <constructor-arg index="1" >
      <ref object="ConcreteChildDependency" />
    </constructor-arg>
</object>

As expected, when I do something like this, spring does not know what to put in for the first argument in the derived (ChildController) class.

  • 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-04T23:51:07+00:00Added an answer on June 4, 2026 at 11:51 pm

    Try referring to ControllerBase object definition using the parent attribute:

    <object id="ControllerBase" abstract="true" singleton="false" >
        <constructor-arg index="0">
          <ref object="DefaultUserIdentity"/>
        </constructor-arg>
    </object>
    <object id="ChildController" singleton="false" parent="ControllerBase" >
        <constructor-arg index="1" >
          <ref object="ConcreteChildDependency" />
        </constructor-arg>
    </object>
    

    This will let ChildController “inherit” the object definition from ControllerBase. See the spring.net docs for more on object definition inheritance. You might want to drop the index attributes from the constructor args, btw. They’re not needed if the constructor argument types can be resolved implicitly. And your ChildController needs a type definition, of course.

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

Sidebar

Related Questions

I'm using spring MVC and spring security. I have annotation-driven controller and trying to
We have been using Spring Remoting in our project for sometime. It is used
We are using IoC and have our logging exposed with it. We are using
We are using JPA entity beans as our model for Spring MVC controller on
I have a Java application that talks to a MySQL database using Spring JDBC
Our application is developed using Spring framework. Is it good practice to check null
We are using a PropertyPlaceholderConfigurer to use java properties in our Spring configuration (
In our Struts2-Spring application we are using the follwoing lines of code access the
We are using very old version of spring 2.0.6 in our code, We were
Using Spring 2.5 tag library, I have an Integer value in a command form

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.