How to filter records based on foreign key value
Hi All, I have two Domain Classes A and B. The relationship between these two table is : Code: class B { A a static belongsTo = [A] static mapping = { id column:...
View Articlejava.lang.StackOverflowError / fatal two-task communication protocol error
When navigating in my application I have a StackOverflowError together with some Oracle errors. It doesn't necessarily crash on the first access to DB. Any idea welcome .... Config is : apcahe-tomcat...
View ArticleHow to get Constraints and Annotations
Hi All, I have following Domain class. Code: import org.hibernate.validator.constraints.* import javax.validation.constraints.* class Employee { @NotBlank @Size(max=10) String...
View ArticleGrails startup error with patched jar
We are working on a grails project with spring. We have created a grails patched jar file. The patched file is org.grails-datastore-core-1.0.4.RELEASE.jar . We have placed it in the lib folder of our...
View ArticleMysterious behavior in looping over collection. Iteration count less than size
Again i have a mysterious behavior in my application: Code: def users = v.user println "Class: "+users.getClass() println "Size: "+users.size() println "Users: "+users users.each{ println...
View ArticleHow reconnect Data source after login authentication in grails
I want to access different databases for each user and I want to identify the database source at the time of login. I have a core database where users access and database URL information are exist. At...
View ArticleIssue with Grails Upgrade from 2.0.1 to 2.2.3
Hi, Currently our grails app runs on version 2.0.1 with spring security plugin v 1.2.7.3 for security. We have role based access set up for app. And the user info is stored in mongodb for which we use...
View ArticleExport Selected Rows of a Grid.
Hi everyone, I'm new in Grails, and I'm developing an application which export a selected rows of a grid to excel. For this I am using Grails 2.2.0, Easygrid plugin 1.3.0, Export plugin 1.5, jQuery...
View ArticleIsue with Upload Files into Amazon S3
Hi All, To upload files into Amazon S3, I am using following two plug-ins, compile ":amazon-s3:0.8.2" compile ":quartz:1.0-RC9" When I start application, I am getting following error continously,...
View Article