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.

learn more… | top users | synonyms (1)

92
votes
1answer
2k views

Clojure 1.2.1/1.3/1.4 'proxy generated in Grails 2.0.0 runtime fails. 1.2.0 is fine

So I have a weird situation here. I'm working on extending the Grails Clojure plugin in Grails 2.0.0 (and 2.1.0-SNAPSHOT) and I wanted to update it to Clojure 1.3.0 and add clojure.tools.logging. ...
59
votes
9answers
21k 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 ...
57
votes
15answers
12k views

Is Grails worth it? [closed]

This is half rant, half question. Is it worth using Grails? I'm trying to develop a relatively simple database-driven web application. My expertise is in Java, so naturally Grails seemed like a good ...
50
votes
18answers
9k 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 ...
45
votes
16answers
22k 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 ...
44
votes
3answers
21k views

Posting a File and Data to RESTful WebService as JSON

This is probably going to be a stupid question but I'm having one of those nights. In an application I am developing I am providing a RESTful API and we want to the client to send data as JSON. Part ...
38
votes
9answers
10k 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 ...
34
votes
6answers
13k 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 ...
33
votes
3answers
11k 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 ...
33
votes
16answers
6k views

Best practices for deploying Java webapps with minimal downtime?

When deploying a large Java webapp (>100 MB .war) I'm currently use the following deployment process: The application .war file is expanded locally on the development machine. The expanded ...
31
votes
4answers
13k 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?
31
votes
3answers
2k 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 ...
29
votes
5answers
12k 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
28
votes
4answers
9k 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 ...
26
votes
4answers
9k views

How to access Grails configuration in Grails 2.0?

I've grabbed the latest Grails 2.0 milestone, and I'm now seeing a deprecation warning for the ConfigurationHolder class: org.codehaus.groovy.grails.commons.ConfigurationHolder The deprecation ...
25
votes
12answers
36k views

What is the correct target for the JAVA_HOME envrionment variable for a Linux OpenJDK debian-based distribution?

Folks In Windows, JAVA_HOME must point to the JDK installation folder (so that JAVA_HOME/bin contains all executables and JAVA_HOME/libs contains all default jar libraries). If I download Sun's JDK ...
24
votes
11answers
3k 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, ...
24
votes
12answers
4k 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 ...
24
votes
4answers
4k views

Best Practices to be followed while developing Grails Application [closed]

While developing a Grails application, what do you consider to be "best practices" and why? I'm not interested in a debate on best practices, but one or more statements backed up with a justification ...
22
votes
3answers
15k 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 ...
22
votes
9answers
16k 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 ...
20
votes
7answers
12k 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.
20
votes
1answer
11k views

Grails domain class, String field TEXT and LONGTEXT

In a Grails domain class, how do I set the constraint for a String field so that its MySQL column type is TEXT or LONGTEXT? So far my best approach is to set the constraint's size: ...
20
votes
3answers
16k 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 ...
20
votes
2answers
4k 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 Grails app, I am often facing the same question when I need to write an UI ...
19
votes
9answers
5k views

Best free resources to learn Groovy/Grails [closed]

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.
19
votes
16answers
6k 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?
19
votes
3answers
1k 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 ...
18
votes
6answers
20k 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 ...
18
votes
2answers
7k views

How to log sql statements in grails

I want to log in the console or in a file, all the queries that Grails do, to check performance. I had configured this without success. Any idea would help.
18
votes
1answer
8k views

Inject grails application configuration into service

I'm creating a grails service that will interact with a 3rd party REST API via a Java library. The Java library requires credentials for the REST API by means of a url, username and password. I'd ...
18
votes
2answers
9k views

How does Grails know to apply a “layout” to pages it renders?

I've been going through the book "The Definitive Guide to Grails" (Rocher/Brown) and in Chapter 04, this mysterious thing called a "layout" just appeared with no explanation. (And there's no "layout" ...
17
votes
3answers
13k views

Externalizing Grails Datasource configuration

Grails 1.x allows using external configuration files by setting the grails.config.locations directive. Is there a similar approach available for externalizing the database configuration in ...
17
votes
17answers
5k 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 ...
17
votes
3answers
3k views

Overriding grails.views.default.codec='html' config back to 'none'

If I leave grails.views.default.code='none' in the grails Config.groovy, it's up to me to HTML encode my expressions explicitly in the GSP files: ${myValue?.encodeAsHTML()}. If I set ...
17
votes
3answers
2k views

Grails: enterprise level Grails [closed]

I am trying to persuade my boss about using Grails. I tell him it is the most productive way to implement our shopping web site. But he has doubts about its scalability when traffic gets higher and ...
17
votes
3answers
6k 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 ...
17
votes
3answers
1k 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 to have an ...
16
votes
8answers
10k views

How can I fix Grails error: “No domain class found for name PrivacyOptions. Please try again and enter a valid domain class name”

I'm just getting started with Groovy/Grails. I added a new domain controller to my project, and generate-controller doesn't like it. There are other indications something's wrong: If I run the app ...
16
votes
6answers
5k views

Grails or Play! for an ex-RoR developer?

I plan to start learning a Java web framework (I love the Java API) I have already used Rails and Django. I want something close to Java but without all the complexity of J2EE. I've found 2 ...
16
votes
4answers
14k views

Best practices for grails index page

What is the right way to populate the model for the index page in a grails app? There is no IndexController by default, is there some other mechanism for getting lists of this and that into the model? ...
16
votes
3answers
8k 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: ...
16
votes
3answers
5k views

Grails console - Unable to find class?

I'm working through the "Grails in Action" book, and I'm stuck at that part that introduces the grails console. From my project directory, I typed "grails console" to open a console window, and the ...
16
votes
1answer
2k views

Hibernate 2nd level cache in a Grails app

Part I In a Grails app, I understand that you enable the 2nd level cache per domain class by adding static mapping { cache true } By default the 2nd level cache is only used when get() is ...
16
votes
4answers
6k 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 ...
15
votes
11answers
18k views

Spring MVC or Grails? [closed]

I'm new to the web programming world, and I'm trying to learn about various Java MVC frameworks available. Through my research, I came across Spring MVC and Grails. My question is: which one is ...
15
votes
14answers
11k views

Rails or Grails? [closed]

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?
15
votes
5answers
8k views

How to read a file in Groovy into a string variable?

I need to read a file from the file system and load the entire contents into a string in a groovy controller, what's the easiest way to do that?
15
votes
6answers
3k 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 ...
15
votes
5answers
3k 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? ...

1 2 3 4 5 228