Tagged Questions
Grails is a web application framework that uses Groovy and Java. The framework is oriented around high-productivity application development, and uses common Java technologies such as Hibernate and Spring.
47
votes
8answers
13k views
Grails vs Roo - why SpringSource is pushing two very similar technologies?
SpringSource (now VMWare) has two very similar technologies: Grails and Spring Roo. I have been using Grails, but I see that SpringSource is actively working on something that is a competitor for that ...
47
votes
15answers
7k views
Is Grails worth it?
This is half rant, half question.
Is it worth using Grails? I'm trying to develop a relatively simple database drive web applications. My expertise is in Java so naturally Grails seemed like a good ...
41
votes
17answers
5k views
Is Grails (now) worth it?
I know this is a duplicate, however, the Grails world has moved on considerably since that question was asked more than a year ago, as has the IDE support in Eclipse, so please don't just blindly ...
35
votes
16answers
14k views
Best IDE for Grails/Groovy? [closed]
I am starting a project with Grails since I already use Eclipse, it was my first choice. But I don´t think its good enough, had some problems and the plugging is poor in functionalities.
Anyone ...
27
votes
11answers
9k views
Performance tuning / Profiling of grails apps
What are your tricks / resources for performance tuning a grails app?
I'm developing my first serious grails application, and got the basic functionality to work, so now I'd like to make it go ...
26
votes
5answers
9k views
Java AppEngine: JDO or JPA, How to choose?
Pros and Cons of choosing JDO or JPA for a Grails Application that will run on Google AppEngine
23
votes
9answers
5k views
What are your favorite Grails debugging tricks? [closed]
Grails can be a bit of a bear to debug with its long stack dumps. Getting to the source of the problem can be tricky. I've gotten burned a few times in the BootStrap.groovy doing "def foo = new ...
21
votes
6answers
5k views
Groovy/Grails :: Ruby/Rails :: 2011 State of the framework
Yes, several similar threads exist, but we're now in 2011, and much has changed.
Grails 1.3.6 has improved hugely compared to v1.3 when I initially tried to learn the framework (and gave up to slow ...
21
votes
12answers
2k views
Eat, Sleep and Breathe Unit Testing/TDD/BDD
I do write unit tests while writing APIs and core functionalities. But I want to be the cool fanboy who eats, sleeps and breathes TDD and BDD. What's the best way to get started with TDD/BDD the right ...
21
votes
12answers
2k views
What does it mean for a programming language to be “on rails”?
I'm currently working with Groovy and Grails. While Groovy is pretty straight-forward since it's basically Java, I can't say I grok Grails. I read that Groovy is to Grails as Ruby is to Ruby on Rails, ...
19
votes
3answers
643 views
Using JPA domain classes in Grails
I want to use a JPA domain model in an application developed using the latest Grails milestone (2.0.0.M1). The JPA domain classes are in the src\java directory of the application.
Based on this blog ...
19
votes
3answers
6k views
Are there any good tutorials for using sitemesh in a grails application?
I'm a pretty experienced Grails developer, but most of my experience has been with using grails for serving up JSON/XML to a flex app and some relatively simple HTML websites.
I've been diving deeper ...
18
votes
3answers
5k views
How to configure a session timeout for Grails application?
In one of controllers in my Grails application I'm preserving a parameter value in a session variable like this:
session.myVariable = params.myValue
After that, I can access the saved value ...
18
votes
8answers
8k views
Are there good Grails sample applications from which to learn?
Besides the sample applications featured in the books Beginning Groovy and Grails and The Definitive Guide to Grails, are there any applications out there written in Grails that are good examples from ...
17
votes
13answers
646 views
Common programming mistakes for Groovy and Grails developers to avoid? [closed]
I've found the "common programming mistakes for x" to be very informative. So what mistakes should groovy and grails developers avoid?
15
votes
3answers
6k views
Intellij IDEA setup on OS X
What's the accepted procedure and paths to configure jdk and global library source code for Intellij IDEA on OS X?
14
votes
17answers
3k views
Java web frameworks
I was looking around to see if there is an equivalent to django/RoR in java.
I found:
Play Framework
Grails
Does anyone have ever tried those frameworks, or do you know any other?
Are they ...
14
votes
5answers
2k views
Speeding up grails test-app
While developing a Grails 1.0.5 app I'm appaled at how slow the grails test-app command is. Even though the actual tests take just ~10 seconds, the whole execution adds up to
real 1m26.953s
...
14
votes
12answers
3k views
How popular is Groovy/Grails in the corporate world?
Are there any figures for its adoption in corporate environments? Does anyone know of large corporations that have adopted it for projects?
14
votes
2answers
6k views
How do I get at the goodies in my Grails Config.groovy at runtime?
in Config.groovy I see this:
// set per-environment serverURL stem for creating absolute links
environments {
production {
grails.serverURL = "http://www.changeme.com"
}
}
what is ...
13
votes
2answers
360 views
Binding JSON to nested Grails Domain Objects
I'm developing a RESTful interface which is used to provide JSON data for a JavaScript application.
On the server side I use Grails 1.3.7 and use GORM Domain Objects for persistence. I implemented a ...
13
votes
5answers
10k views
Ruby on Rails vs Grails vs. Spring ROO vs. Spring App
I'm planning on writing a simple web application that will be used by lots of users (as complicated as a simple bookmarking app) and I'm trying to decide which framework/language to use.
I'm very ...
13
votes
2answers
2k views
Grails: Templates vs TagLibs
In Grails, there are two mechanisms for modularity in the view layers : template and taglib.
While I am writing my own Grail app, I am often facing the same question when I need to write an UI ...
12
votes
4answers
238 views
GORM for Rest (Grails)?
I am doing some research on Grails and writing about what the future holds for it..
Something interesting jumped out in the RoadMap (http://grails.org/Roadmap)
GORM for REST
Anyone with more ...
12
votes
4answers
969 views
Best Practices to be followed while developing Grails Application [closed]
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?
12
votes
3answers
789 views
How to add constraints on inherited properties in a grails domain sub-class
Here's what I'd like to do:
class A {
String string
static constraints = {
string(maxSize:100)
}
}
class B extends A {
static constraints = {
string(url:true)
}
}
So class A ...
12
votes
3answers
710 views
How to manage object revisions in Grails?
I need to implement a revision system for articles in my grails web app. After searching grails forum, stackoverflow, grails plugins and googling internet, I have ended up with 3 options:
Option 1 - ...
12
votes
9answers
2k views
Best IDE for Grails 1.1.X development
I've been on a frustrating quest to find an IDE which provides reasonable support for Grails 1.1 development. My minimum requirements are:
Supports running tests within the IDE
Supports debugging ...
12
votes
7answers
4k views
Troubleshooting Grails/Groovy memory leaks?
I've got a Grails application that does a fairly decent amount of domain object creation and destruction, and it seems to run out of PermGen space at a very, very rapid rate. I've done the usual ...
12
votes
5answers
2k views
Valid Java code that is NOT valid Groovy code?
Most Java code is also syntactically valid Groovy code. However, there are a few exceptions which leads me to my question:
Which constructs/features in Java are syntactically invalid in Groovy? ...
12
votes
3answers
10k views
SQL/Database Views in Grails
Does anybody know what is the best approach to accessing a sql view through Grails (or if this is even possible)? It seems an obvious way of doing this would be to use executeQuery against the view to ...
12
votes
6answers
6k views
How to order by more than one field in Grails?
Is there a way to get a list ordered by two fields, say last and first names?
I know .listOrderByLastAndFirst and .list(sort:'last, first') won't work.
12
votes
13answers
6k views
Rails or Grails?
Grails vs Rails. Which has better support? And which one is a better choice to develop medium size apps with? Most importantly which one has more plug-ins?
11
votes
1answer
452 views
Grails: Alternatives to Grails Doc?
The documentation created by running grails doc is not completely satisfactory in my eyes. For example, actions in controllers appear as properties in the documentation, though I would wish the have ...
11
votes
4answers
6k views
Django vs. Pylons
I've recently become a little frustrated with Django as a whole. It seems like I can't get full control over anything. I love Python to death, but I want to be able (and free) to do something as ...
11
votes
5answers
6k views
Grails - Lift: Which framework is better suited for which kind of applications? [closed]
I have been using Grails for the past few months and I really like it, specially GORM. However, I am getting interested into Scala's Lift. Therefore, I would like to know your opinion about which kind ...
11
votes
1answer
8k views
Grails File Download
I'm trying to craete a site which allows users to upload any file type they like. I've implemented this feature fine, and the file is held on the server. Later on they can download the file to view, ...
10
votes
2answers
1k views
Grails command object data binding
Grails has very good support for binding request parameters to a domain object and it's associations. This largely relies on detecting request parameters that end with .id and automatically loading ...
10
votes
7answers
817 views
What are the best options for hosting a Grails application?
I'm looking for the best hosting option for a Grails application, my requirements are:
Low number of requests and storage (to start with likely only hundreds of requests per day)
Ease of deployment ...
10
votes
2answers
232 views
What are the pros & cons of functional testing frameworks for a new grails application?
I've got analysis paralysis looking at all the different functional testing options for a new grails (v1.3.4) application. I've looked at
WebDriver/Selenium (which I've used before)
WebTest/Canoo
...
10
votes
4answers
727 views
Considering moving from Java/Spring MVC to Grails
I'm currently using Java & Spring (MVC) to create a webapp, and I'm considering moving to Grails. I'd appreciate feedback/insight on the following:
I have multiple application contexts in the ...
10
votes
9answers
4k views
Groovy and Grails book [closed]
What a the best books for learning Groovy and Grails for an experienced Java developer?
10
votes
4answers
1k views
Grails startup is slow
Help! I'm porting a large ruby app to Grails - but the Grails startup of my application takes more than 2 minutes.
I've already set dbCreate to "read" I've ensured my high end dual processor ...
10
votes
2answers
1k views
Comparing ASP.NET MVC and Grails for a new project
Greetings, everyone. I consider myself to be an intermediate developer, but, to be candid, probably closer to novice than expert. In any case, I have more experience with C# and the .NET platform, ...
10
votes
3answers
3k views
How can I return a 404/50x status code from a Grails Controller?
I have a controller that needs to return a 404 page and status code on certain conditions. I can't seem to find out how to do this in Grails. A coworker recommended this method:
...
10
votes
4answers
2k views
Can I configure Grails with no datasource?
I have a Grails app that loads its data from xml files and delivers rss feeds via rome. I don't have any domain classes and my app has no datasource. I don't want Grails to load an in memory hsql db ...
10
votes
2answers
644 views
Documenting taglibs (or closures in general) in Groovy/Grails
I am writing my first taglib as part of a plugin and I would like to document it. Adding javadoc (is there any place that documents groovydoc or is it really the same thing?) doesn't seem to work for ...
10
votes
4answers
4k views
integrating Grails and GWT
GWT seems like a really nice technology for Java developers who don't like (or don't know) HTML/JS/CSS to build rich web interfaces. On the server-side Grails also looks really nice, it's often ...
10
votes
6answers
2k views
Best free resources to learn Groovy/Grails
What are the best free resources that I can give someone to learn Groovy/Grails? Blogs, tutorials, sample code, sample apps, or presentations would all be helpful.
10
votes
30answers
2k views
Any good Rails books? [closed]
Hey ya guys ...do you know good books for ruby on rails .I know 'Grails'.Keeping that in mind please suggest some good books for Rails !