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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T23:14:32+00:00 2026-05-23T23:14:32+00:00

I have written a test, which I know is wrong. I know that this

  • 0

I have written a test, which I know is wrong. I know that this gets the same instance for originalProduct and updatedProduct so that when I call updatedProduct.setProductName("Updated Product Name"); it updates the productName member of both originalProduct and updatedProduct. How can I change this so that I get 2 different instances of this object.

@Test
@Transactional
public void testUpdateProduct() {
    productDao.addProduct(createTempProduct());
    Product originalProduct = productDao.getProduct((long)999);
    Product updatedProduct = productDao.getProduct((long)999);

    updatedProduct.setProductName("Updated Product Name");
    productDao.updateProduct(updatedProduct);
    Product newProduct = productDao.getProduct((long)999);
    Assert.assertNotSame(originalProduct, newProduct);
    Assert.assertSame(updatedProduct, newProduct);
}
  • 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-23T23:14:33+00:00Added an answer on May 23, 2026 at 11:14 pm

    You’re hitting Hibernate’s first-level cache. In other words, every call to productDao.getProduct(999) within the scope of that test will return the same Product instance because the first time you load it, the instance is stored in the Session just in case you ask for it again. In order to avoid this, you can either evict the specific object from the Session or clear all objects from the Session between the calls.

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

Sidebar

Related Questions

I have a test suite DLL written in C# that uses Selenium.This is then
This is a simple script I have written to test command line argument handling:
I have some written a number of unit tests that test a wrapper around
I have a test generator written in Perl. It generates tests that connect to
I have written this piece of code public class Test{ public static void main(String[]
I have a simple unit test which tests that a validation function picks up
I have written the following simple test in trying to learn Castle Windsor's Fluent
I have a simple little test app written in Flex 3 (MXML and some
I have different projects written in .NET 3.5 and some unit test projects to
I have written an AIR Application that downloads videos and documents from a server.

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.