I am trying to invoke controller methods from inside a Play 2 plugin, but I am not getting very far.
Is there a way to get access to the Router from inside a plugin? I don't want to hard code anything, this plugin should remain generic.
I am aware of the method Handlers.invokeHandler() method, but I need the step before, ie actually finding the controller method I want to invoke.
I have managed to write the following Java code, but I don't know Scala at all, and would rather stick in the Java world. Let alone that, I don't know what to do with the instance of Option!
final Option<Router.Routes> routes = play.api.Play.routes(play.api.Play.current());