Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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());
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.