Closed schaloner closed 13 years ago
If you choose to put your test-specific application context in the test/ directory, SpringPlugin can't find it using this.getClass().getClassLoader().getResource(...). Using Play.classloader.getResource(...) fixes this.
I will add that ASAP
Nico
Changing
this.getClass().getClassLoader().getResource(...)
to
Play.classloader.getResource(...)
will fix also issue #5.
New release of play-spring module would be nice =)
If you choose to put your test-specific application context in the test/ directory, SpringPlugin can't find it using this.getClass().getClassLoader().getResource(...). Using Play.classloader.getResource(...) fixes this.