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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T14:31:32+00:00 2026-06-09T14:31:32+00:00

I have an action class and that class will have a BOC object that

  • 0

I have an action class and that class will have a BOC object that will fill with Spring Dependency Injection. Below shows the sample code:

public class ActionCls {
  private BOC theBoc = null;

  /*** theBoc getter / setter ***/
}

If I want to call a member function, say thefunc, that belong to BOC inside the ActionCls constructor, like this:

public class ActionCls {
   private BOC theBoc = null;

   ActionCls() {
      theBoc.thefunc();
   }
}

a runtime error will be thrown saying that theBoc is null. I did try to use init-method in spring configuration like this:

<bean id="theBoc" class="com.huahsin68.BOC" init-method="thefunc"></bean>

Anyhow this doesn’t help because even though thefunc is get called first, but the theBoc setter is invoke only after ActionCls constructor. Is that a way to call theBoc setter 1st then only ActionCls constructor? So that theBoc is not null and I can invoke thefunc.

  • 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-09T14:31:33+00:00Added an answer on June 9, 2026 at 2:31 pm

    You can’t expect to call a getter or setter on a class BEFORE its constructor is called. What you want to achieve is not possible. You can better create a parametrized constructor, in which you init theBoc with some argument, using the constuctor-arg param on your ActionCls bean, then call the method:

    public class ActionCls {
       private BOC theBoc = null;
    
       ActionCls(BOC theBoc) {
          this.theBoc = theBoc
          theBoc.thefunc();
       }
    }
    

    Then you can define your constructor arg like that:

    <bean id="actionCls" class="foo.bar.ActionCls">
            <constructor-arg ref="boc"/>
    </bean>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class that has an Action<string> called DisplayData ; In various points
I have a model-driven Struts Web action: public class ModelDrivenAction<T extends Object> implements ModelDriven<T>,
I have a class that defines a Hierarchical RadGrid that I will be using
I currently have created a pagination JavaScript class that will automatically paginate comments when
I have a class that I need to perform some actions on but I
I have a action class for saving some data to a database.In action class
in my action class i want to have a map of strings. and in
I have the following index action: class ExpensesController < ApplicationController def index() @expenses =
In my action class I have a Map<Long, Set<String>> attribute, named accountsMap. Lets say
I am working on struts2. In my action class I have written some accessors

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.