| Author |
Why is autowiring working in JUnit test but not in bean?
|
Dave Alvarado
Ranch Hand
Joined: Jul 02, 2008
Posts: 434
|
|
Hi,
I'm using Spring 3.0.5. I'm running a JUnit test to test db connectivity. I have
and when I run the JUnit test, the "sessionFactory" is configured fine. However, another class that is invoked in the JUnit test has an identical "sessionFactory" reference, which remains null ...
This doesn't happen when I run the real application. Any ideas why one autowiring is working and the other isn't connecting at all? When I run my application outside of the JUnit environment, the autowiring within the "WebLeadsDAOImpl" class gets connected just fine.
Thanks, - Dave
|
 |
Boris Romashov
Ranch Hand
Joined: Feb 23, 2009
Posts: 38
|
|
Why in WebLeadsDAOImpl the field SessionFactory is static?
Try to make it an instance-method.
|
 |
 |
|
|
subject: Why is autowiring working in JUnit test but not in bean?
|
|
|