so I want to call a certain gsp after certain amount of time
def index()
{
//code here
//after 30secs
redirect (action :"anothergsp")
}
You could add a refresh like so:
<head>
<meta http-equiv="refresh" content="30;url=/somewhere/else" />
....