Is there a way in Play to annotate routes to inform that a certain section/group routes is only available in dev or prod mode
|
feedback
|
|
Well, this is not documented, so I am not sure if this is intentionally possible or not, but I have found a way to make this work. Please note however, as this is an undocumented feature, may mean it is unintended, and therefore may break in future versions of play. You are able to achieve what you want using the following line in your routes file.
I created a test application with a couple of actions
I then added the following to my routes file
So, you can see that using a simple if statement, it will execute the next group of routes only in that mode. The if statement will end when the next if statement is found. If in Dev mode you try to access route4, you will not be able to access it, and you will see the RouteNotFound page showing that the available routes are those that you have defined for Dev only. | |||||||||
feedback
|