Wanted to know the best practices to be taken into account while developing a grails aapplication. For eg. Usage of Service for business logic etc.

Thoughts?

link|improve this question

feedback

closed as not constructive by Sam Saffron Nov 1 '11 at 4:34

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

4 Answers

up vote 19 down vote accepted
  1. Understand the Grails conventions. Grails is convention driven; and the conventions are how Grails can do a lot of its magic for you. Views should just be views. Controllers should just be controllers. Services and Model objects should contain all of the logic of your application. This means the when you click a link, or invoke an endpoint, you call into a Controller. The controller will invoke a service (which might in turn invoke other services) and give a concise response. The service will return model objects or data to the controller, which will simply render an appropriate response. Services are transactional, so anything that hits the database should go in a service.

  2. Test. Test. Test some more. Having tests is the best way to ensure you can add functionality without breaking new functionality, i.e. that your project is maintainable.

  3. Dependency Injection. You need to put your components in the appropriate grails-app/folder. Services go into the services folder. Controllers go into the controllers folder. If you have a Thing model object, and you need a controller and service for it, then your controller and service should be named ThingController and ThingService. To get the ThingService into your ThingController, put def thingService in your controller, and grails will autowire it up for you. If you fail to follow naming conventions and the rules for where to put the various components, the autowiring might fail.

  4. Understand the underlying technologies, namely Spring and Hibernate. You are going to run into issues modeling your domain objects and getting them to work together. Grails really is a high productivity framework, but if you don't understand how Hibernate works, you are going to get lost easily when trying to get your persistence to behave the way you want it.

  5. Groovy is not Java. A lot of Java knowledge will serve you well. But Groovy is a dynamic language and Grails has its on set of gotchas that stem from Groovy. You will run into runtime issues around typing in Grails that you largely avoid with Java. Testing helps with this.

These things seem obvious, but many questions arise around these issues.

link|improve this answer
Nice points. But is it necessary to implement simple logics of the system in services? I usually do it in controllers. – Farshid Zaker Jun 3 '11 at 12:24
1  
I'd say it's better to implement in domain objects. One more note: stackoverflow.com/questions/5167756/… – Victor Sergienko Jun 3 '11 at 12:46
1  
@farshid -- if your simple logic can fail, and you want any data operations to roll back, then it should go it a service. Note that if the logic fits on a domain model, put it there as @victor recommends -- if you invoke the domain method in a service, it will still roll back – hvgotcodes Jun 3 '11 at 13:10
You're not obliged to use implicit transactions from Services. In complex cases, we invoke withTransaction{ ... } right in Controller where inside goes 1-4 domain method invocations - and that's all. I think I'll ad this as an advice :D – Victor Sergienko Jun 3 '11 at 14:04
feedback
  1. Avoid the temptation to put lots of logic in the web layer. For views, strive make them as simple as possible. Put as much boilerplate in your layouts. Avoid conditional logic like the plague. Split out shared content into templates and g:render them. Build your own taglib for common UI elements.

  2. Similarly, keep your controllers as simple as possible. Inexperienced developers seem to have a habit of throwing everything in the controller, because it seems most obvious. Some hints: queries and object retrieval logic can go in domain objects. If you see withTransaction() and need transactional behaviour, it's a good candidate for a service. If you've got complex data binding, split it out into a command object.

  3. For domain objects, take advantage of the ability to override setters and getters to make properties easier to work with. Creating short named queries and chaining them together is an excellent way to decompose complex query logic. Anything that applies to a single object of that type with few dependencies should go in the domain object class. Keep the logic specific to that object, though. More complex business logic that deals with groups of objects belongs in services.

  4. If in doubt, it can go in a service. Services should be stateless. If you find you need to store state, you probably need a new domain object.

link|improve this answer
your point 2 is exactly the point im arguing with @victor – hvgotcodes Jun 4 '11 at 14:11
"If you find you need to store state" or perhaps a caching abstraction.. – Kimble Jul 6 '11 at 0:43
feedback

What I can think of...

  1. Test as much as you can with unit tests, not integration tests. Unit tests are ways faster to run/debug and enforce low coupling better. Use mockDomain(), mockLogging() etc.
  2. Use grails console to test and explore your code in the wild. Embed a Groovy console into your web UI - it's an invaluable tool to examine insides of a running application.
  3. Do use domain objects to model domain logic. Moving domain logic to Services is a hangover of inconvenient persistence layers.
  4. Keep Controllers brief. If a logic can be expressed in a terms of a specific class, move the logic there or create a new class. Test it afterwards.
  5. Separate layers. Keep domain logic to domain classes. Keep presentation logic in controllers/views.
  6. transactional Service is not the only way to make a transaction. Invoking DomainClass.withTransaction{ ...a couple of lines here... } from Controller is pretty fine, as long as they obey to #4.
  7. Strive for perfection - unlike in Java, it's achievable :D Do know the technology. Use Builders, proper plugins, Commands, metaprogramming, whatever, to make your code shorter, more readable, groovier.
link|improve this answer
With domain reloading in Grails 1.4 the temptation to put domain logic in services should be easier to resist. – Paul Jun 3 '11 at 13:46
I don't have a problem with that, I can debug domain logic in a controller or in console, and move it afterwards. – Victor Sergienko Jun 3 '11 at 14:01
@victor while you can use withTransaction, I wouldn't do it if the logic makes sense on a domain object, or in a service. Why use that if you can put the stuff on a domain method and use that in a service. If you are hitting the DB, why not do it in a service? – hvgotcodes Jun 3 '11 at 14:33
Why should I add a service? Do you mean hitting a DB means I need a special Service for that? If my action is painting a Car, and can accomplish it with Car.paint() in a transaction, a CarPaintingService is completely redundant, it's a Parallel Hierarchy code smell. Occam's razor calls for not having a Service unless there's some function involving several weakly coupled domain objects. – Victor Sergienko Jun 3 '11 at 15:56
@victor are you saying that you would rather use withTransaction in in controller and never have a service? im not advocating parallel hierarchy, im advocating putting all business logic in a domain class or service... – hvgotcodes Jun 3 '11 at 22:19
show 4 more comments
feedback
  1. Develop re-usable parts of your application as Grails plugins. These plugins can be tested individually and will remove complexity from your main application(s). Consider publishing the plugins in the public plugin repository if you think others can benefit from them.

  2. Use the release (previously known as maven-publisher) plugin to deploy in-house plugins to your Maven repository.

  3. Make yourself familiar with the resources plugin for handling of static resources. This plugin is going to be a part of Grails 1.4 and will be used by many popular plugins.

  4. Don't be afraid to look into the source code of the third party plugins you're using or Grails itself for that matter (this has saved me so many times!). Grails and many of the most popular plugins host their source code on GitHub making it very convenient to browse the code, fork projects and contribute patches.

link|improve this answer
feedback

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