Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It's easy to create a controller [etc] via the grails command line for the main app, like

create-controller book

but how to do this for a plugin (which is a app-within the app) ? The command always creates everything in the MAIN app folders. No official docs on that, some blog posts say "do cd myPluginFolder" first, but grails command like does not know the cd command. I need a proper one-liner here.

share|improve this question
I've never created a plugin controller, but I think they're suggesting you to go into the plugin folder with simple "cd" command (without grails, the bash one) and then run grails create-controller. – lucke84 Nov 15 '12 at 17:38
Could you please describe your project structure? Also, are these in-place plugins that you are talking about? – Peter Ledbrook Nov 16 '12 at 17:26
Seriously, who has downvoted this ? The GRAILS command line and the linux command line are different things. As most (official) tutorials also use the grails command line, and moving within the order structure is a big issue, this question is not a bad one. – Panique Nov 17 '12 at 16:23

closed as not a real question by Panique, bensiu, RolandoMySQLDBA, Alex I, The Shift Exchange Jan 19 at 3:57

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.

1 Answer

You do it in the plugin project. Once the plugin is installed into an application it doesn't make sense to change it. How will future users of the plugin get access to the new controller and other changes?

share|improve this answer
That's a good question and I also think it's not very clever to create the plugin WITHIN the main application, but's that's exactly what "The definitive guide to Grails" says. The Book is the standard when it comes to grails. It's written by the creators of grails, so I believe them ;) - To sum this up, your answer does not make sense, as the plugin and the main app ARE the same project. – Panique Nov 16 '12 at 9:15

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