I am using Play 1.2.5. I have an action "welcome" which has redirect statement to an action "view1". Redirect seems to be working ( checked my log) but view of the action "view1" is not displaying after redirect.
public static void welcome(){
redirect("/view1");
}
public static void view1(){
// code goes here....
}
After redirect, view of view1 action is not displaying.
Thanks in advance !!