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

0
votes
1answer
9 views

How does Grails merge static the config.groovy with the static web.xml file?

Grails allows you to generate a static web.xml file with: grails install-templates When you edit the generated web.xml file and add change config.groovy what does Grails at compile time do? How ...
0
votes
0answers
7 views

How does SessionRegistry update new Sessions when logged in with RememberMe Cookie in Grails?

When a user is logged in to a web site a new session is created. I use Spring Security to determine the number of users that are currently online, i.e., logged in and have active sessions. The code ...
0
votes
0answers
24 views

How to check User Online Status with Spring Security in Grails?

We use Grails Spring Security in our application to perform user authentication. If a user loggs in to our application, the rememberMe cookie will be saved. This means, that the user will remain ...
1
vote
1answer
30 views

Plugin or method to get similar functionality like django-reversion in Grails

Is there any way to get similar functionality like django-reversion for Grails? I mainly require the following functionality of the django extension on Grails: Roll back to any point in a model's ...
2
votes
2answers
18 views

How to set fields are not required in mongoDb using Grails 2.2.2

I create my first app in Grails 2.2.2 .. For database i am using MongoDb .. but it gives me an error if all fields are not filled..How to set mongoDb fields allows null
0
votes
0answers
5 views

Quartz/Tomcat 7/ClassNotFoundException

Quartz version is 2.1.7 Only quartz-related jars are the one in the webapp. Tomcat does not have any quartz libs in common/lib. I am getting a ClassNotFoundException for a quartz class (that is ...
0
votes
0answers
19 views

Grails - How to make ivy-cache folder structure the same as maven repository folder structure?

Is it possible to make ivy-cache folder structure the same as maven's repository folder structure? I am planning to use the same location (path,folder) as maven repository and ivy-cache. I'm getting ...
0
votes
1answer
23 views

Detecting XHR CORS request in Grails

I'm attempting some Cross-Origin requests against my Grails (2.0.1) application. I have the grails CORS pluging installed. Using jQuery. How can I detect an XHR request? Under conventional same ...
0
votes
1answer
31 views

grails select is not rendering value

I want to make a select box in grails. I am using 2.1.0. I have a view page which shows a select box named class. But it does not shows any value. The list I have used in the from attribute of select ...
0
votes
2answers
48 views

grails spring security login is not working

I am using grails 2.1.0. I have installed spring-security-core plugin. When I create user it is creating it. But when I try to login then it shows: "Sorry, we were not able to find a user with that ...
0
votes
3answers
28 views

Creating Lucene Index in a Database - Apache Lucene

I am using grails searchable plugin. It creates index files on a given location. Is there any way in searchable plugin to create Lucene index in a database?
0
votes
1answer
30 views

Grails Spring Security Last Request URL when AJAX

I'm recently facing the problem with last request url after login. Normally, everything works properly. But if I proceed following procedure I have troubles: Open an App in one tab and log in In ...
0
votes
1answer
39 views

Grails - Can I use maven repo(.m2) path as ivy-cache path

I find some document Grails 2.1.1 It saying we can customize ivy-cache folder. I have a doubt, can i specify my maven repo(.m2) path as ivy-cache path. grails.project.dependency.resolution = { ...
1
vote
3answers
56 views

Grails - How to make grails get latest local jars from maven repository

In my maven repo (.m2). there is one my local jar like sub_app-0.1.jar. I have same copy of the it in ivy-cache. I run maven install on sub_app then new sub_app-0.1.jar file created. After, i run ...
0
votes
1answer
37 views

Grails test war creation error

Need your help my dear friend.... I am using Grails 2.1.4 and Maven Integration. i created pom file for Grails project. I am running a goal like this from eclipse mvn -Dgrails.env=test package I ...
0
votes
1answer
41 views

Grails: Raw SQL query in the current transaction

I am trying to execute a raw sql query using something similar to def dataSource; Sql sql = new Sql(dataSource); But, it seems that this runs in a separate transaction of its own. It therefore ...
0
votes
1answer
38 views

grails spring security is not working properly

I have installed spring-security-core plugin for my project for login security.After installing it everything works fine such as if account_locked= true it shows the message that account locked, if ...
1
vote
1answer
46 views

How to set default value for Domain Class Values in Grails 2.2?

In my Grails domain class I want to set default values which do persist in the database. I use mysql as database. I tried to do this: class A { long someValue = 1 long someOtherValue ...
0
votes
0answers
15 views

Grails picking old version jars(previous used) also, in 'test war' creation

I used yesterday itext-2.0.8 and today i changed to itext-2.1.7. even it is picking 2.0.8 into war file also two versions of itext jars are coming in war file. Now, there is no reference in pom or ...
0
votes
0answers
30 views

Grails - How to exclude some jars for grails-app(war) package

i tried lot of ways even some unwanted wars are including while maven's grails-app packaging. I need itext-2.0.8, that i added in pom and it coming fine, but below three jars also coming, and one is ...
-1
votes
0answers
38 views

create menu and submenu in grails 2.1.0

I want to create a template only with menu and submenu so that I can render it in my view page. but I have no idea how to produce menu and submenu in grails. Can anyone please help me on this ?
0
votes
1answer
22 views

compare string with the retrieved value in grails controller

I am trying to create a login action for login. I am getting the value from database. But the problem is that when I check the value with a string it's doesn't work properly and the else part executed ...
0
votes
3answers
32 views

In Grails, how do I get a property for a relationship on a Spring Security user?

I'm using Spring Security. Let's say I have a User that belongs to a Store. The Store has a property that determines if it has an online shop or not: class Store { ... boolean isOnline ...
0
votes
1answer
54 views

Grails not picking jars from maven repository based on pom.xml

Please, need help, I am getting some compilation error because of Grails not picking jars from maven repository based on pom.xml file. My BuildConfig.groovy grails.project.dependency.resolution = { ...
0
votes
2answers
43 views

How to iterate over object list in reverse order in Grails?

From a list of GORM database objects that are ordered desc in my user domain model I want to order them asc (i.e., in reverse order in the view). For example to get the latest books of a user from the ...
0
votes
0answers
20 views

Error creating Job (factory-bean returned null) in Grails quartz plugin

I am using Grails 2.2.2 (GGTS - 3.3.0M1) with Quartz plugin 1.0-RC7. With the following job, I get an error saying that the job instantiation failed when testing with 'grails run-app'. I see the same ...
1
vote
1answer
46 views

Multiple or many domains with one grails application?

I have one grails application and i want to bind many topleveldomains to it. So for example: A user of my application can add a domain name to his profile and after that he has to add the IP as ...
0
votes
3answers
69 views

What is the best way to make Grails domain classes commentable?

I have different classes in my Grails application that a user should create comments for. E.g., Post, Book, Article Setting static hasMany = [comments: Comment] to each class seems to be a bad ...
1
vote
0answers
29 views

Grails 2 forked mode doesn't deploy my app

I'm trying to use Grails new forked mode. I enabled it in BuildConfig.groovy file using grails.project.fork.run = true and now the tomcat server starts in "detached mode" as expected, but my ...
-2
votes
1answer
38 views

Grails Export : getOutputStream() has already been called for this response. Stacktrace follows:

Need your help my dear friend. I am using same code for every module(items, products,....) to export pfd. All places working fine, but one place, the pdf file creating and downloading successfully but ...
2
votes
0answers
61 views

Quartz job stops executing on StaleObjectStateException exception

I have a problem with quartz ( plugin :quartz2:2.1.6.2 but I have test even with plugin :quartz:1.0-RC7 but the problem does not change) on my Grails Project ( grails 2.2.1 ). I have a job like this ...
1
vote
1answer
35 views

What is the best way to implement self-referenced one-to-many relationships in Grails?

I want to implement a follower following relationship in Grails GORM. One implementation could be: class User { String name } class Follower { User user User follower } OR: class User { ...
0
votes
1answer
23 views

How to set unique hasMany relations based class properties?

I have two domain classes: class Book { String name static hasMany = [articles: Article] } class Article { String name static belongsTo = [book: Book] } I want to validate that a ...
0
votes
0answers
10 views

GORM select recent by updatedDate on join table

I'm trying to implement a sql statement via createCriteria and can not find out how to translate. General idea is I am selecting the "most recent articles" based on a max value on one of the inner ...
0
votes
2answers
33 views

Grails Command Object Not Work on Production Environment

I am new in grails i am using commmand object for login validation. it work fine in development environment but not work in production environment def login={LoginCommand loginCommand-> ...
1
vote
1answer
131 views

Grails 2.2.2 Compilation Errors: ThreadGroupContext beaninfo

I am using Grails 2.2.2 with GGTS 3.3M1. When I run my app (grails run-app) and change something in a groovy file then Grails recompiles the file. During this process the following error output ...
0
votes
2answers
57 views

Could not run Grails project GGTS

I have a grails project that runs perfectly in the command line. When I try to run it in GGTS with grails run-app it runs the first time without any error. Then, I stopped the server and ran it ...
-1
votes
2answers
30 views

Where can I download Grails 2.1.4

It looks simple, but I search for one hour even i am not able to find, so finally came for your help. I am not able to understand, why grails keeping that much secretly the old versions. Please help ...
0
votes
2answers
73 views

Check if domain classes hasmany collection contains the subset collection

Hello i'm trying to get list of domain objects if a domain object's hasmany association contains all elements in given list. class Patient { static hasMany = [symptoms:Symptom] } class Symptom { } ...
1
vote
1answer
70 views

Grails error Property [{0}] of class [{1}] cannot be null - on basic grails app

Here is my simple domain class: package projectmanagement class Project { String Name static constraints = { } } Save Method on Controller(generated using scaffolding): def save() { ...
0
votes
2answers
65 views

Grails 2.1 dateCreated null intermittently on domain save

tl:dr; This is a bit involved of a problem, any advice is welcome, appreciate reading in advance :) My coworkers and I have been struggling a bit with an odd behavior in our batch processing ...
-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
104 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
118 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
63 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
61 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
20 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
42 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
55 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.

1 2 3 4 5 11