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
votes
0answers
10 views

Grails & JSON task [closed]

I have the following task, I have two questions about it I'm done with number 1, and 2. I can't understand 3.A can someone give me an example to understand it more ? how can i call this method from ...
0
votes
2answers
107 views

grails validate nested command object not working

I'm using grails 2.2.1 and attempting to validate a nested command structure. Here is a simplified version of my command objects: @Validateable class SurveyCommand { SectionCommand useful ...
0
votes
1answer
145 views

No signature of method: save() is applicable for argument types: () values: []

We are trying to upgrade a existing Grails 1.x application from 1.x to 2.x (current using 2.2.1). One unit test is failing and I am stuck. Here is what the test is doing... Service - def ...
0
votes
2answers
67 views

Grails Add Value to Set inside params

Hello here is what i'm trying to do. When user presses link it adds value to the list or set inside params. for example on the first click it adds myId=1 then it becomes /?myId=1 then on the second ...
0
votes
2answers
74 views

How to make GGTS / STS super fast?

I am using GGTS 3.2 JUNO 4.2.2 with Grails 2.2.1. It occurs to me that the environment is very slow after a while. What can I do to make it faster? Is there a way to use the full potential of the ...
0
votes
0answers
23 views

Facebook is denied for sharing when I share feed two time continuously

I am trying to sharing with facebook. It share first time correctly but when I am going to share my feed second time within 1 minute then It creates problem.I am unable to understand that what is my ...
0
votes
0answers
46 views

Grails PDF Export plugin — How to increase page size

please suggest my dear friend. I am using Grails Export plugin, and i created one pdf export but it is giving output like this because of more columns in table, Screenshot if you observe most of ...
3
votes
0answers
56 views

Grails 2.1.4 and 2.0.4 stops serving random JS and CSS files in AWS Elastic Beanstalk

I have a big problem with our Grails application running in AWS Elastic Beanstalk. Our application is running on 4 instances with Tomcat 7 and sometimes it scales to more. From time to time a random ...
0
votes
1answer
30 views

How can I list the available objects to inject in grails?

Is there a way to programatically list all available beans in the grails spring injection context? In guice I was able to do this by looking up the bindings configured in the injector.
2
votes
0answers
58 views

Grails Cache resources not working

Please give some suggestions... Cache resources not working now just few days back it working. Same code same plugins, i found one deference compare to previous(while it working fine) , while ...
0
votes
0answers
74 views

Grails - pass a collection of objects from form to controller

I'm working on an application where user will be able to schedule some events. I'd like to build a dynamic view - user can add as many events at once as he wants. I know I can pass to controller a ...
0
votes
1answer
61 views

“GORM support for Hadoop HBase plugin” is not supporting for grails 2.1.0

When I install Grails plugin "GORM support for Hadoop HBase". I am getting this error. | Error Plugin gorm-hbase-0.2.4 requires version [1.3.2] of Grails which your cu rrent Grails installation ...
-1
votes
4answers
104 views

grails clean run-app on Windows bat file

grails clean run-app is not a command. You need to run grails clean then grails run-app. If I create a bat file with the following: grails clean grails run-app The script ends after clean. ...
0
votes
1answer
70 views

How can I update a property on a list of grails domain objects?

I have a list of domain class objects: def books = Books.findAllByTitleLike("%Hobbit%") Now I want to update the property "available" in all books in this list. Normally, I would do books.each { ...
1
vote
1answer
239 views

Grails, Tomcat 7, REST Client and UTF-8 Encoding of Characters

I am trying post the following string "`.4.13 - 30613 £ ₤ © ™" to a Grails Server once Deployed as a WAR and I'm having no luck when communicating between two instances of Tomcat7 Our server works as ...
1
vote
1answer
50 views

Accent Insensitive Search in Grails - Create Criteria

is there an easy way how to search accent insensitive in Grails? I have a create criteria builder with ilike (which is for case insensitive search) but I need accent insensitive. Like neglect accent ...
0
votes
1answer
141 views

Grails ehcache.xml custom caches configuration

ehache.xml for cache configuration has been created. But setting in this file works only for hibernate 2L cache For custom caches (for example caching service methods invocation: ...
2
votes
1answer
70 views

Why doesn't my GORM object save to the database?

Consider the following code: if (!serpKeyword) { serpKeyword = new SerpKeyword( keyword: searchKeyword, geoKeyword: geoKeyword, concatenation: concatenation, ...
1
vote
1answer
143 views

running grails 2.1.3 tests in Intellij Idea: Bizarre error in Spock test: Cannot add Domain class [class x.y.Z]. It is not a Domain

I am in the process of upgrading to grails 2.1.x, and need to redo some of my old-style tests. I just added a new test to my spock Spec, and for this test I need to mock an additional Domain class. ...
0
votes
0answers
35 views

unable to create grails criteria

I have an entity called EasyAnnouncement as following: class EasyAnnouncement { String name Event event // can be null } and the entity Event looks like: class Event { LocalTime ...
0
votes
0answers
46 views

Grails filter url pattern

I need to cache static resources in grails using custom filter. I used below post: Grails filters with static resources? However, the filter is not getting invoked for static resources and gets hit ...
0
votes
0answers
28 views

How to set lib directory for the Grails GWT-plugin?

I am using Grails 2.2.1 and the GWT plugin 0.8. The documentation says that you can define GWT dependencies in BuildConfig.groovy as: gwt { version="2.5.0" gin.version="1.5.0" ...
0
votes
2answers
53 views

Grails transaction never completes

Consider the code below, that tries to create a new SerpKeyword within a transaction and prints to the console to show where it is. if (!serpKeyword) { println "I DIDN'T FIND THE ...
0
votes
1answer
51 views

Grails : Difference between \${} and ${}

Can someone tell me the difference between : <g:if test="${foo.bar}"> and <g:if test="\${foo.bar}"> A real exemple of the use of "\" before the "$" is : <g:if ...
0
votes
1answer
102 views

Save changes to Property File in Grails

I have a grails application that reads from a property file. I created an administration page, that allows the user to view the settings in this file. I want to allow the user to update the various ...
0
votes
1answer
25 views

How to get complete path in grails controller

I want to use something similar to HttpServletRequest.getPathInfo(); which returns the entire path of request. This is used in java, I am trying to find something similar in Grails. Thanks.
0
votes
1answer
134 views

grails 2.2.1 not reloading classes

I can't seem to get any grails projects reload ANY classes in development mode. Running 2.2.1 on Windows7 , using IntelliJ 11.1.4 , and 12.1 Any ideas?
0
votes
1answer
47 views

Unable to run Grails from command prompt - getting error

Error opening zip file or JAR manifest missing : `D:/ESSENTIAL` Error occurred during initialization of VM agent library failed to init: instrument SYSTEM VARIABLE JAVA_HOME =C:\Program Files ...
0
votes
1answer
44 views

Grails render a loading page while retrieving data

I have a web application that takes a while to load up the initial page. The main screen has a lot of data with multiple datasources, thus the load time is longer than I would like. I would like to ...
0
votes
0answers
26 views

Reading multiple URL records using WIZTOOL 3.1

I want to read multiple records from WIZTOOL REST CLIENT. Assume Employee class have empName, empId, department, mobileNumber. I want to add set of these records. Example as Below: ...
1
vote
1answer
29 views

Grails 2.1 How can I Prevent Cascade delete

What techniques are people using to efficiently do prevent cascading delete on a large collection of classes? I have the following domain classes: But when I delete a category item then it also ...
1
vote
2answers
68 views

How to especify the query in a hasMany relashionship in Grails?

I have this domain class in Grails: class User { String name Status status enum Status { ACTIVE(1), BLOCKED(2) } static hasMany = [friends:User] } So user can have one or ...
0
votes
1answer
49 views

How to overwrite grails command default script

My grails project depends on another java project, before build grails project, i want to build the java project and publish to a local ivy repository. I want to keep on using grails command line ...
1
vote
0answers
77 views

Best place to learn Grails Architecture and Flow [closed]

Best place to learn Grails Architecture and Flow. I am new to Grails, It is not like struts, it has rich, simplified, conventional and lot of other features. But I can't find Grails official ...
1
vote
2answers
98 views

Grails maven packaging for EAR

Prior to Grails 2.2.x I have been able to create grails projects with Maven and include them in a Maven Ear project with everything working just fine. The new pom.xml in Grails 2.2.x has changed the ...
0
votes
2answers
73 views

Grails GSP outer templates with inner content?

Is there a way in Grails GSP to replace the following <tmpl:/templates/header /> <!-- tmpl namespace call is equivalent to <g:render template="/templates/header" /> --> <!-- ...
1
vote
1answer
38 views

CXF write logs in specific file

in my application there are several web services implemented with the help of cxf framework. i want to log the incoming requests of each web service in separate files. e.g. requests -> ws1 ...
0
votes
1answer
61 views

How to get the Mime Type of a request in Grails?

How to get the Mime Type of a request in Grails? I used: def f = request.getFile('image') def mimeType = f.getContentType() but this does not always returns the correct mime file type. How can I ...
0
votes
0answers
47 views

Simultaneous execution of HtmlUnit WebClient against Grails on Jetty

I want to run HtmlUnit WebClient simultaneously. I have created 10 threads, each is accessing my web application created in Grails on Jetty. I got: 2013-03-25 ...
1
vote
2answers
97 views

Grails 2.1 SQL to Grails GORM Query

I want something like this 'SELECT * FROM MyDomain WHERE endDate >= date AND startDate <= date' Now please give possible solution by this way def date = new Date().clearTime(), obj = ...
1
vote
0answers
38 views

How to get interactive grails autocomplete to work on Windows

When I run interactive Grails (by typing 'grails' at a DOS prompt in Windows), the autocomplete (using TAB) doesn't seem to work correctly when directories are involved. For example, if I'm trying ...
0
votes
2answers
43 views

Grails Bypass beforeUpdate Method of a Domain class

I'm just curious if there is a way to bypass the beforeUpdate() and similar methods of a certain domain class. I need it for restoring the original password of a user. The beforeUpdate proceeds the ...
0
votes
2answers
69 views

Grails Create Multiple Value Map

I have a list of Clients and each client has one or more Venues. These are two separate Domain classes where Venue has client id I want to create a multiple value MAP which will have Client name as ...
0
votes
0answers
27 views

I've installed grails-melody:1.13 run localhost:8080/EBlast/monitoring the code run fine.but when i try to login in my app i got exception like that

| Error 2013-03-11 12:24:27, 325 [http-bio-8080-exec-1] ERROR errors.GrailsExceptionResolver - MissingMethodException occurred when processing request: ...
0
votes
0answers
60 views

Grails taglib and markdown plugin - need to escape in textarea, but not sure how

I have a tag lib which looks like so class NOTETagLib { def NOTE = {attrs, body -> out << "<div class=\"note\" style=\"border: 1px solid #F0C000;background-color: ...
2
votes
1answer
56 views

Resize uploaded images for better viewing

I have a profile picture which i stored in database in a byte[] field. What I want do is to create image thumbnails at runtime. Because I have to show images in different sizes on different place on ...
1
vote
0answers
47 views

BeanNameAutoProxyCreator on Grails 2 isn't working

I want use spring and log4jdbc in Grails 2.2.1 to catch the jdbc info, but it isn't working and is returning an error. Here is the log4j config in config.groovy: info ...
3
votes
2answers
101 views

Can't avoid n+1 selects with many to many relationship in Grails

I'm creating a toy Q&A site with Grails in order to learn the platform. I have two domains, Posts and Tags, with a many to many relationship between them. I want to print a list of posts with ...
0
votes
1answer
104 views

Grails 2.1.x Controller Unit Testing with services

Attempting to unit test a Grails 2.1.x controller that calls a template to show a list of history items with a status. This controller works fine in manual testing but were attempting to automate ...
0
votes
0answers
32 views

In grails 2.2.0 how can i execute a query with “if not exists ” then insert with values in domain class .

how "if not exists " and insert with values query will be execute in executeQuery() in domain class.

1 2 3 4 5 11