Is it possible in playframework to override the default save action in the CRUD controller and redirect to list after
I'm using Play framework's great crud module. The thing is I would like to do some special processing and validation before my object gets saved. So I created a save action in my CRUD controller. So far so good. But now after the object is saved I would like to render the list of objects just like the CRUD module was doing before I overrode its save action. How would I go about doing this? Here is my controller: package controllers.admin; import java.util.List; import models.Category; import controllers.CRUD; @CRUD.For(Category.class) public class Categories extends CRUD { public static void