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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T20:16:36+00:00 2026-05-15T20:16:36+00:00

The spring framework documentation states: In the unlikely case that a test may ‘dirty’

  • 0

The spring framework documentation states:

In the unlikely case that a test may
‘dirty’ the application context,
requiring reloading – for example, by
changing a bean definition or the
state of an application object –
Spring’s testing support provides
mechanisms to cause the test fixture
to reload the configurations and
rebuild the application context before
executing the next test.

Can someone elaborate this? I am just not getting it. Examples would be nice.

  • 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-15T20:16:37+00:00Added an answer on May 15, 2026 at 8:16 pm

    Each JUnit test method is assumed to be isolated, that is does not have any side effects that could cause another test method to behave differently. This can be achieved by modifying the state of beans that are managed by spring.

    For example, say you have a bean managed by spring of class MySpringBean which has a string property with a value of "string". The following test method testBeanString will have a different result depending if it is called before or after the method testModify.

    @RunWith(SpringJUnit4ClassRunner.class)
    @ContextConfiguration(locations={"/base-context.xml"})
    public class SpringTests {
    
        @Autowired
        private MySpringBean bean;
    
        @Test public void testModify() {
            // dirties the state of a managed bean
            bean.setString("newSring");
        }
    
        @Test public void testBeanString() {
            assertEquals("string", bean.getString());
        }
    }
    

    use the @DirtiesContext annotation to indicate that the test method may change the state of spring managed beans.

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

Sidebar

Related Questions

Spring.NET is an open source application framework that makes building enterprise .NET applications easier.
I'm building a MVC web application (using the Spring MVC framework), and I'm a
We have started using Spring framework in my project. After becoming acquainted with the
My project is based on spring framework 2.5.4. And I try to add aspects
I'm pretty new to the Spring Framework, I've been playing around with it and
I'm currently trying to get into the Java EE development with the Spring framework.
I'm using hibernate validator framework with Spring. A class implementing the Spring Validator validates
What is a very good jsp framework to use with Spring MVC. Are the
I have two Spring proxies set up: <bean id=simpleBean class=org.springframework.aop.framework.ProxyFactoryBean> <property name=target> <ref local=simpleBeanTarget/>
In every MVC framework I've tried (Rails, Merb, Waves, Spring, and Struts), the idea

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.