|
|
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?
|
|
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.
|
|
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.
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.
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.
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.
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.
|
|
|
answered Jun 3 '11 at 12:20
|
|
|
feedback
|
|
|
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.
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.
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.
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.
|
|
answered Jun 3 '11 at 16:38
|
|
|
feedback
|
|
|
What I can think of...
- 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.
- 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.
- Do use domain objects to model domain logic. Moving domain logic to Services is a hangover of inconvenient persistence layers.
- 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.
- Separate layers. Keep domain logic to domain classes. Keep presentation logic in controllers/views.
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.
- 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.
|
|
|
answered Jun 3 '11 at 12:42
|
|
|
feedback
|
|
|
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.
Use the release (previously known as maven-publisher) plugin to deploy in-house plugins to your Maven repository.
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.
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.
|
|
answered Jun 4 '11 at 18:51
|
|
|
feedback
|
Not the answer you're looking for?
Browse other questions tagged grails
or ask your own question.