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)

15
votes
2answers
5k views

How to calculate elapsed time from now with Joda Time?

I need to calculate the time elapsed from one specific date till now and display it with the same format as StackOverflow questions, i.e.: 15s ago 2min ago 2hours ago 2days ago 25th Dec 08 Do you ...
9
votes
1answer
4k views

Grails Date unmarshalling

If I get the following json from a RESTful client, how do I elegantly unmarshal the java.util.Date? (Is it possible without providing (aka. hard-coding) the format, that's what I mean by elegantly...) ...
27
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 ...
7
votes
4answers
10k views

Binding a Grails date from params in a controller

Why is it so hard to extract the date from the view via the params in a grails controller? I don't want to extract the date by hand like this: instance.dateX = ...
11
votes
3answers
19k views

Accessing the raw body of a PUT or POST request

I am implementing a RESTful API in Grails, and use a custom authentication scheme that involves signing the body of the request (in a manner similar to Amazon's S3 authentication scheme). Therefore, ...
5
votes
2answers
7k views

Grails JSONBuilder

If I have a simple object such as class Person { String name Integer age } I can easily render it's user-defined properties as JSON using the JSONBuilder def person = new Person(name: 'bob', ...
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 ...
18
votes
2answers
8k 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.
8
votes
2answers
5k views

SSL, Tomcat and Grails

I want to implement SSL in Grails. I cannot find the file /conf/server.xml in Grails folder structure. Has any implemented it? Much appreciated.
6
votes
5answers
4k views

Grails: displaying created image in gsp

I'm very new to Grails so there's probably a very simple answer to this question. I'm trying to display a dynamically created image in a gsp. The image is NOT stored in a database, it's created on ...
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 ...
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 ...
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 ...
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 ...
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 ...
17
votes
3answers
4k 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
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 ...
14
votes
1answer
4k views

Retrieving a list of GORM persistent properties for a domain

What's the best/easiest way to get a list of the persistent properties associated with a given GORM domain object? I can get the list of all properties, but this list contains non-persistent fields ...
1
vote
1answer
4k views

Import XML into a Grails Domain Class

I am reading an XML file with a schema based on a Domain Class. Here is a simple example for illustration (my current situation concerns a lot of fields from a lot of classes) : class Player { ...
6
votes
2answers
5k views

Grails/GORM: The meaning of belongsTo in 1:N relationships

In an ordinary one-to-many mapping the "one"-side is the owner of the association. Why would anyone use the belongsTo-mapping for such a mapping? Am I missing some side-effect of specifying belongsTo? ...
7
votes
2answers
3k views

How to install Grails plugin from source code?

I got a source code of the plugin from a friend, but still don't know how to install it into my project. Yes, there's install-plugin command, but this plugin isn't allowed to upload to the root grails ...
5
votes
4answers
2k views

Problems with Grails 404 UrlMapping

I'm having some problems getting Grails to map my 404 errors to an errors controller like in the documentation. I'm running Grails 1.3.5 and when I add the following mapping to a default application: ...
4
votes
1answer
4k views

Using groupProperty and countDistinct in Grails Criteria

I'm using Grails 1.2.4. I would like to know on how can I sort by "countDistinct" (descending) and with groupProperty inside a projections. Here are my domains: class Transaction { static ...
3
votes
2answers
1k views

How to adjust constraints / DB mapping for Map within grails domain class

Following grails domain class: class MyClass { Map myMap } Now for myMap, grails automatically creates a new table for the elements in the map. However if I add elements which are too long (e.g. ...
1
vote
3answers
2k views

In Tomcat, java.lang.LinkageError: JAXB 2.1 API is being loaded from the bootstrap classloader

I am trying to load my webapp into Tomcat. It seems to be complaining that it has an older version of a JAR than my application. Should I remove that older JAR, use a newer version of Java, edit the ...
8
votes
3answers
5k views

Image resize in Grails

I am developing a Web Album using Grails and for image processing, I am using grails-image-tools plugin. I need a functionality to resize the images if the uploaded images size is too big (for eg: ...
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 ...
15
votes
1answer
14k 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, ...
14
votes
2answers
6k views

Grails - getting a message value from controller

How can I get a value from message properties outside of GSPs? For instance, the equivalent of <g:message code="some.message"/> but in a controller?
11
votes
5answers
3k views

How do you share common methods in different grails controllers?

Currently when I need to share a method like processParams(params) between different controllers, I use either inheritance or services. Both solution has some inconvenients : With inheritance, you ...
12
votes
2answers
1k views

Grails query not using GORM

What is the best way to query for something without using GORM in grails? I have query that doesn't seem to fit in the GORM model, the query has a subquery and a computed field. I posted on ...
12
votes
5answers
9k views

MySQL Connection Timeout Issue - Grails Application on Tomcat using Hibernate and ORM

I have a small grails application running on Tomcat in Ubuntu on a VPS. I use MySql as my datastore and everything works fine unless I leave the application for more than half a day (8 hours?). I did ...
8
votes
6answers
17k views

How to display image in grails GSP?

I'm still learning Grails and seem to have hit a stumbling block. Here are the 2 domain classes: class Photo { byte[] file static belongsTo = Profile } class Profile { String ...
14
votes
3answers
4k 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 ...
7
votes
1answer
1k views

Gradle / Grails application

I have been trying to configure Gradle to manage a Grails project for a couple of hours with no success. The suggestions I've found here on Stack Overflow and elsewhere on the Internet didn't work for ...
6
votes
2answers
6k views

Experience using extjs with grails?

Has anyone built a grails app using extjs as the frontend? Are there any pitfalls or gotchas that you'd care to share? It looks like the JSON format output by grails by default it quite different ...
2
votes
2answers
2k views

GRAILS: how to get the number of currently signed in users via spring security core plugin?

my problem is, that i want to limit the number of users that can simultaneously be logged in my application (this value is stored in the database). first i tried to do that with some configuration in ...
14
votes
3answers
7k views

How do I call a Grails service from a gsp?

How can I invoke a service directly from a view? I'm trying with ${my.domain.service.method}, but it complains it can't find the property. And no, I don't want to use a controller because the view ...
1
vote
2answers
4k views

GRAILS: Find all children in a self-referenced one-to-many relationship

In grails, How would one find all the children in a one-to-many relationship e.g., class Employee { static hasMany = [ subordinates: Employee ] static belongsTo = [ manager: Employee ] } ...
6
votes
1answer
1k views

Why should grails actions be declared as methods instead of closures and what difference does it make?

In grails 2.0 whats new http://grails.org/doc/2.0.0.RC1/guide/introduction.html#whatsNew it says: 1.1.3 Web Features Controller Actions as Methods It is now possible to define controller actions as ...
5
votes
4answers
1k views

Grails vs Gaelyk for new Groovy AppEngine application [closed]

I am beginning development on a new AppEngine application using Groovy. It will be medium-sized and use a number of AppEngine services. It will have both a regular and a mobile website, using HTML 5 ...
5
votes
3answers
5k views

Grails: Accessing spring beans in the destory closure of Bootstrap code?

I'm looking to access a bean in my destroy closure in the Bootstrap.groovy of my grails project. Any ideas on how to achieve this? I seem to have no access to servletContext...?
4
votes
1answer
2k views

Accessing the model from a layout view in Grails

I'm using the layout support (sitemesh) in Grails which works fine. I'd like to adjust my layout to have it depend on whether or not a user is logged in or not. My grails-app/views/layouts/main.gsp ...
3
votes
2answers
2k views

Grails sequence generation for Oracle 11g

I realize this is more of a hibernate question than Grails. In a load balanced (2 nodes) environment I see that the ids of my objects are jumping around quite a bit. Even without restarting the app ...
3
votes
2answers
4k views

Grails: Load data on one ComboBox depending on another

Let's say I have a combobox with the options GENERAL, AIR, GROUND, and SEA <g:select name="group" from="${['GENERAL', 'AIR', 'GROUND', 'SEA']}" valueMessagePrefix="default.category" ...
1
vote
1answer
854 views

Grails group by date

I have a domain class with a date-property. class Transaction { LocalDate time BigDecimal amount } How can I query for the sum of all transactions grouped by month? I can´t find any ...
14
votes
3answers
4k views

Grails BuildConfig.groovy, difference between build, compile, and runtime?

I'm trying to understand the BuildConfig.groovy file in Grails 1.3.7. grails.project.dependency.resolution = { plugins { build "acme:acme-cache:latest.integration" } ...
5
votes
2answers
2k views

Grails: best way to send cache headers with every ajax call

It's well known that Internet Explorer aggressively caches ajax calls whereas all the other browsers grab the data fresh every time. This is usually bad: I've never encountered a case where I want ...
2
votes
2answers
797 views

Grails request parameters encoding issue in Tomcat

My grails app will not decode request parameters correctly. In config.groovy: grails.views.gsp.encoding = "UTF-8" grails.converters.encoding = "UTF-8" All my gsp's use contentType="text/html; ...
1
vote
2answers
1k views

Grails not encoding the uniocde characters properly

In my grails app, the unicode characters are not being encoded properly. I'm using grails 1.3.7 and tomcat 7.0.22. Following are the settings that I've configured in my app for unicode support: - ...

1 2 3 4 5 19