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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T07:52:55+00:00 2026-06-17T07:52:55+00:00

We have a spring application that runs in one of a few ways, depending

  • 0

We have a spring application that runs in one of a few ways, depending on a specific property, which has to be one of a small set of values. When the application starts up, this property gets passed to a factory, which then builds slightly different bean implementations depending on it.

I’d like to write an integration test for the functionality this controls to ensure it works when the property is set to various values; so it needs to run one test with the property set to 1, one test with the property set to 2, etc. Each test needs to set the property as required, and then reload the configuration so that everything is reconfigured correctly.

Getting the context and manually refreshing it in each test seems simple enough, but how can I inject these different properties in the tests at runtime to control this? Is there any better way of organising this sort of configuration?

  • 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-17T07:52:56+00:00Added an answer on June 17, 2026 at 7:52 am

    I eventually found a way to actually do this directly. It’s slightly messy, but not actually too bad.

    Originally, the tests were being run with an @ContextConfiguration, and then later initialised with new TestContextManager(getClass()).prepareTestInstance(this); in the @Before (initialised separately so we could use runners other than the Spring one).

    I extended this to first register a text execution listener which just grabbed the TestContext into the test itself whenever one became available:

    contextManager.registerTestExecutionListeners(new AbstractTestExecutionListener() {
        @Override
        public void prepareTestInstance(TestContext freshTestContext) throws Exception {
            testContext = freshTestContext;
        }
    });
    

    The test itself then injects a property into a custom PropertyPlaceholderConfigurer (extremely simple: overrides resolvePlaceholder, calls super.resolvePlaceholder unless you’ve previously explicitly set the property) once it knows what the property’s actual value is (not until the actual test, unfortunately), and calls:

    testContext.markApplicationContextDirty();
    contextManager.prepareTestInstance(this);
    

    which makes the TestContext rebuild the application context, now using the newly changed property value.

    Finally, you then need to remember to reset the property between tests, and probably mark the whole class as @DirtiesContext, to stop it interfering with your other tests.

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

Sidebar

Related Questions

I have a web application made with Spring that runs on Tomcat. On the
I have a Spring application that I believe has some bottlenecks, so I'd like
I have a localized spring mvc based web application, that has an externalized messages
I have an application that runs in any one OS (either win7(x86) or win
Scenario: We have a Spring managed web application that runs inside Websphere. (Spring 3.0.x,
I have a spring application that uses an embedded Jetty instance. Since I am
I have a spring mvc application that I have broken up into separate maven
I have a Spring Web MVC application that I'd like to serve a large,
I have a JSP struts application that uses Spring to integrate with the services/dao/database.
I have a web application that uses the Spring Framework (3.1) and persistence through

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.