Grails is a coding-by-convention framework that leverages well-established java frameworks (spring, hibernate) to allow programmers to quickly develop web applications. It touts features such as a zero-XML configuration and a typical web-application mvc architecture. Along with its core, Grails has ...

learn more… | top users | synonyms (1)

47
votes
15answers
8k 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 ...
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 !
3
votes
3answers
2k views

How do I check in files for building with git?

I'm using git to manage a grails project I have.I set up a git repository on a remote server and what I want to do is when I have code working locally, I want to commit it and push to the remote ...
0
votes
1answer
1k views

Which of Scala or Groovy should I choose? [closed]

i've experience about a year in Ruby on Rails and 2 years in Java. After Ruby and Java, in your opinions what is prefered programming language should i learn between Groovy and Scala ? and how about ...
15
votes
3answers
12k 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 ...
8
votes
2answers
3k 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.
5
votes
2answers
5k 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 = ...
7
votes
6answers
4k views

Stripes, Spring, Play (or ?) : which high performance Java framework to use?

We are beginning to build out a webapp which will probably see a lot of traffic. We dont have a lot of money, so we want to reduce hardware cost. More or less, I think that means we will try to be as ...
0
votes
2answers
366 views

Grails: How do I make my page load a filter when the page loads?

On index.gsp I have this to redirect it to list.gsp so I'm imagining is should be something like this: ${response.sendRedirect("entry/list")} My filter is just one textField and two datePickers ...
1
vote
4answers
900 views

What CSS tools (framework,grids system, IDE,..) do I need for starting web design?

I am building a new WebSite based on Grails technology. Concerning the graphical design of my website, I plan to use services from a professional web designer but meanwhile, I need to do some basics ...
42
votes
17answers
6k 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 ...
38
votes
16answers
15k 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 ...
8
votes
3answers
12k 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, ...
3
votes
2answers
3k 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', ...
5
votes
2answers
2k 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 ...
5
votes
1answer
3k 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...) ...
4
votes
3answers
827 views

Grails: Very slow deploy time. 'Resolving Dependencies…' takes 10+ seconds

Every time I make a minor change to my Grails app it takes 10-15 seconds to deploy it. The majority of the time is in 'Resolving Dependencies'... Welcome to Grails 1.3.7 - http://grails.org/ ... ...
7
votes
3answers
7k views

Groovy - how to exit each loop?

I'm new to Grails/Groovy and am trying to find a node in a an xml file; I've figured out how to iterate over all of them, but I want to exit the loop when the target node is found. I've read that ...
9
votes
4answers
3k views

How to make use of Grails Dependencies in your IDE

So I finally got my dependencies working with Grails. Now, how can my IDE, eg IntelliJ or Eclipse, take advantage of it? Or do I really have to manually manage what classes my IDE knows about at ...
5
votes
2answers
1k 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 ...
5
votes
1answer
1k 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 ...
2
votes
2answers
1k views

Handling parameters from dynamic form for one-to-many relationships in grails

My main question here is dealing with the pramas map when having a one-to-many relationship managed within one dynamic form, as well as best practices for dealing with one-to-many when ...
1
vote
1answer
118 views

How does Grails handle plugin dependencies

I'm creating a Grails Plugin as a wrapper for a complex product. This product has a lot of dependencies to other products like hibernate. The issue is, that grails has some same dependencies but with ...
1
vote
1answer
172 views

Grails 1.0.3 Upgrade Problems

I am trying to upgrade a Grails 1.0.3 project to 1.3.7 and am having what I believe are related issues. The old project has Hibernate xml files in conf/hibernate/Domain1.hbm.xml I am guessing that ...
1
vote
1answer
3k views

How is the Eclipse JDK setting affecting the system's JDK setting

I was trying to compile a Grails application referencing third party JARs on Mac OSX. Although my system's JRE and JDK is set to Java 1.6 I always got a Compilation error: ...
0
votes
1answer
606 views

grails - simple App to test spring-security-core secure-channel on Heroku

Because setting the ports in this question didn't solve the redirect loop problem, I created a bare-bones test app (grails 2.0, latest spring-security-core 1.2.7.1), so the redirect loop problem is ...
0
votes
2answers
279 views

Grails one to many relationship view

I have two grails domain classes Class MultipleChoiceQuestion { String question static constraints = { ... } static hasMany = [options:MultipleChoiceOption] } and ...
0
votes
0answers
253 views

Question about UNION two tables with plain SQL in Grails and Pagination [closed]

I solve my QUESTION by referencing this ANSWER. But the way that I implement pagination is too ugly... I would like to know if there is any better/compact/easier way to do the same? Thanks!! My ...
0
votes
2answers
1k views

Authenticate user using external webservice in grails

In my grails application I'm using spring security plugin to handle authentication using email and password of a user. Now I need to integrate my application with an external system which works on ...
0
votes
1answer
739 views

Does overloading Grails static 'mapping' property to bolt on database objects violate DRY?

Does Grails static 'mapping' property in Domain classes violate DRY? Let's take a look at the canonical domain class: class Book {      Long id      ...
48
votes
9answers
15k 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 ...
14
votes
5answers
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 ...
5
votes
3answers
3k 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: ...
8
votes
3answers
2k 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 ...
5
votes
2answers
5k 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 ...
4
votes
3answers
4k 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...?
12
votes
3answers
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 ...
5
votes
4answers
767 views

Grails vs Gaelyk for new Groovy AppEngine application

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 ...
4
votes
1answer
1k 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
523 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
2k 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" ...
2
votes
2answers
2k views

Grails: filter data in a Grails table dynamically

I have a table, with a series of events, name of my class is Entry. Here is a picture of my table is in Spanish, but the basics are the same so it shouldn't be a problem. (the filter HTML code is ...
2
votes
2answers
2k views

Grails bind request parameters to enum

My Grails application has a large number of enums that look like this: public enum Rating { BEST("be"), GOOD("go"), AVERAGE("av"), BAD("ba"), WORST("wo") final String id private ...
1
vote
1answer
389 views

Removing proxy part of grails domain object?

I want to get at an actual instance of a domain object. That is, I need to serialize the object, and I'm trying to use the domain object on two sides of an httpinvoker chain. Is there a way to get a ...
8
votes
3answers
3k views

Suggestions for Grails .gitignore

So far i've collected the following: *.iws *.war .classpath .DS_Store .project .settings /*.launch /*.tmproj /out/** stacktrace.log test/reports Any other suggestions?
4
votes
1answer
2k views

Clearing Grails Dependency Cache

I run into some problems when trying to solve a problem I had with SNAPSHOT maven dependencies (see here). When running grails dependency-report, cached dependencies get listed, more or less like ...
2
votes
1answer
726 views

Amazon RDS and Elastic Beanstalk connectivity

There are already several threads where this question is discussed, and I have already tried implementing suggestions discussed in Elastic Beanstalk -> RDS connection error using Grails. I have also ...
2
votes
1answer
427 views

How does Grails resolve Controller name conflicts?

What is the recommended approach when an application Controller name conflicts with the name of a plugin's Controller? I've seen these Grails JIRAs: GRAILS-4240 GRAILS-1243 ...and Burt Beckwith's ...
1
vote
3answers
141 views

Which Security Framework to use for Grails application?

I spent a couple of weeks trying to figure out what solution I should bring to this question I posted. Since I couldn't find a full documentation for Shiro-Grails integration, I am looking for some ...
1
vote
1answer
624 views

How to log sql in grails 1.3.7

I try to configure logs for sql in grails with logSql=true in datasource (test env) but nothing is displayed in test output. I read this post but It's not working. How to log sql statements in ...

1 2 3 4 5 24