I'm using Play 2.1 and I'm having some odd problems.
I have a subpackage messages in the controllers package with a class i18n.java.
My routes file looks like this:
GET \ controllers.messages.i18n.index()
POST \ controllers.messages.i18n.process()
I now have a form with the following action:
@helper.form(action = routes.messages.i18n.process())
but this gives me an error:
value messages is not a member of object controllers.routes
I've used subpackages before in Play 2.0.4 and it worked fine like that, can anyone spot any errors in my configuration?
The routes file doesn't complain that it can't find the controller.