Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I call a method in one of my controller classes without grails trying to generate a view?

share|improve this question
where are you calling from and what are you trying to do – nate_weldon Mar 31 '12 at 20:42
An action in a controller always has to send something back to the user. But it doesn't have to be a GSP page, or HTML at all, you can construct a response of any type yourself. As nate suggests, we need to know what you want to achieve to be able to help you find a solution. – David Mar 31 '12 at 22:28
do you tried 'render' ? – neodevelop Apr 1 '12 at 6:11

closed as not a real question by casperOne Apr 2 '12 at 16:14

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

up vote 1 down vote accepted

You can redirect to another controller action.

class PuppyController {

   def woof() {
     redirect(action:'bark')
   }

   def bark(){
     response.write "Moo"
   }

}

At some point you should either write to the response or redirect to a method/closure that corresponds to a view so the user can receive the output.

If the method you're trying to call is on another controller, chances are YOAR DOING IT WRONG.

If, for example, I have a controller method that uploads a file, and another method that creates the filename for that file as a combination of some convention I make up (say timestamp + "pretty file for" + username) on another controller, you should promote that controller method to a Service and inject it into both controllers.

share|improve this answer

Essentially you can create a controller instance (via 'new' keyword) and then call the action of interest. Please provide more details about what you want to do, so i might be able to give a better answer...

share|improve this answer
class FooController {

  def fooAction() {
    render("Successful call to fooAction")
  }

}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.