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:
application.conf
Before t
you should try to remove private. use:
private
@Inject Configuration configuration;
instead of:
@Inject private Configuration configuration;