I\'m trying to migrate a Playframework application from 2.4 to 2.5.3 and I have problems to get values from application.conf
file:
Before t
I put here the answer, in order to help anyone with the same issue
My error came from the way i used to instantiate my Zipper java class from my calling class.
Thx to Igmar Palsenberg, he provided me the answer : https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!topic/play-framework/uLFqTM9_Iy4
I used Zipper zipTest = new Zipper(); to instanciate my Zipper class and i have to use Zipper zipTest = injector.instanceOf(Zipper.class);