Hi,
I have annotated my test classes as follows:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"file:WebContent/WEB-INF/applicationContext.xml",...
Type: Posts; User: heinrich; Keyword(s):
Hi,
I have annotated my test classes as follows:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"file:WebContent/WEB-INF/applicationContext.xml",...
For the integration tests for my spring application with junit I am subclassing org.springframework.test.context.ContextLoader, because I want to use a already present XmlWebApplicationContext for...
Hello,
recently I tried to plug a WebArgumentResolver int my AnnotationMethodHandlerAdapter. As nothing worked I seached a bit on google and found out that you cannot add a WebArgumentResolver to...
I already solved the problem by autowiring the session factory, opening a session on my own and closing it on the end of the thread.
Thanks for your help, anyway!
Hi,
I am using Spring 3 together with Hibernate. I have a user request that starts a java thread in the spring controller and then a response is sent, so the thread might continue to work while...
Hi there,
is there a way to have a default controller that handles all unmapped URLs? I use the component-scan feature to tell spring what controller I have.
Sincerely,
Heinrich