Currently I am using the below after every test I have in my test suite. However it makes it very slow because H2 has to reload the application context after every test. Is there a quicker way to clear all my objects so I do not have carry over between tests?
@org.junit.After
public void tearDown() throws Exception {
context.close();
}