0
votes

I have few Play Framework applications (v2.2.2) that use same routes and the Controller implements the same Action for each of them. I want to extract these common routes, views & Controller into kind of abstract application and package it as jar that other Play applications can include. Is there a way to achieve this?

1

1 Answers

0
votes

I think it's impossible to use the abstract classes with routes because each route is linked to a static method.
But you can gather all your work within a module.