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)

0
votes
0answers
6 views

How do you use the MySQL replication driver in Grails (on Tomcat)?

I have a Grails (2.2.1) app for which I'm trying to configure MySQL replication. These settings work fine via "grails run-app" but fail when run via Tomcat: dataSource { dbCreate = "update" ...
0
votes
0answers
16 views

Instructions needed to integrate spring-security-ui into my grails application

First things first, I have already started going through these URLs to install the spring-security-ui to my grails application. Spring Security UI Plugin and ... Customizing Grails Spring Security ...
-2
votes
1answer
12 views

Grails + PhoneGap: Grails as Controller and Model for Phonegap Application

I am new to web development and the MVC concepts. I want to build a web app for android and iphone using Phonegap. I will be making the view with java script and css; however, I want the interface to ...
0
votes
1answer
27 views

How to pass values from view to controller in grails

I need to pass the Id value to my controller to execute the action. Currently this is what I have in my controller. def StartServer() { amazonWebService.ec2.startInstances(new ...
0
votes
1answer
19 views

DB2 Before Update Trigger Behavior

Wondering if someone can help me understand how a DB2 before insert trigger behaves. I have a Grails app that inserts rows to a DB2 database. The table in question has a before insert trigger that ...
0
votes
2answers
21 views

Datasource avanced properties

I just wondering is this is a valid DataSource configuration: development { properties { maxActive = 50 maxIdle = 25 minIdle = 5 initialSize = ...
2
votes
1answer
23 views

Jackson Serialization sometimes borking with timezone

(I am in the UTC+2 timezone, which I assume is the 2 hour difference). I'm busy writing a JSON RESTful API that's part of a Grails application (2.0.3 on this project in particular, but this problem ...
0
votes
1answer
21 views

GSP/JSP for loop - first node 'selected' class

This is a GSP problem/niggle I've faced before in JSP and I'm looking for the cleanest possible solution. Essentially, I'm using a for loop (<g:each> in GSP) to iterate through a list of items ...
0
votes
2answers
23 views

including external css grails rendering plugin issue

I am trying to use bootstrap.css to style a pdf that is being generated by the grails rendering plugin. The pdf is generated fine but none of the css styling is being applied. Have been searching for ...
0
votes
1answer
22 views

How would I use button in the following situation in grails?

I am returning a map value that contain multiple items. The map is as follows: def myList = [] //Some code to obtain the List List << ["Id": Id,"Name": Name,"Code": sCode, "RunType": x ] ...
0
votes
2answers
21 views

grails unknown number of model objects in the view

Working in Grails 2.2 I have a situation where I need to be able to handle an unknown number of CommitteeMembers in the view. These need to be both created and displayed. Each one has the usual ...
2
votes
1answer
29 views

How do I proxy a production database with a testing database?

I'm currently working on a Grails project which has a static production database with a lot of data in it. I would like to test my application using the production data, but instead of having to ...
0
votes
2answers
30 views

how to call a javascript function in grails 2.2.2

I am trying to call my javascript function but its not working.. Please help me out javascript code: <script type="text/javascript"> $(document).ready(function(){ function confirm(){ ...
0
votes
1answer
22 views

How to remove object from database in test in Grails

I have got a domain: MyClass with fields String a String b I got a test: void testRemoveMyClass() { MyClass x = new MyClass() x.setId(3) x.setA("AAA") x.setB("BBB") ...
0
votes
0answers
29 views

deploying grails app on tomcat with sql connection

My grails run app work and connect to Ms SQL, the problem arise when deploying on tomcat, it fails. Receiving the following error: The web application registered the JDBC driver ...
1
vote
1answer
28 views

What's the id generation strategy used in Grails unit test

I have used default id generation strategy in my app (with postgres), and I have a unique sequence table in my db for all my other tables, so an id has to be unique in my table space. However, I ...
0
votes
0answers
16 views

RestEasy 2.3.5 Client Issue

I am very new to Rest Easy. I have recently added RestEasy to my Grails project. It already had some crawler library working. I am getting the below exception and I am not sure what jars etc are ...
0
votes
1answer
30 views

Difference between eq and == in Grails withCriteria query

I want to fetch from my DB all requirements related to a given project(in this case currentProject) I've just used two ways to do this first one : Requirement.withCriteria {.... eq("project", ...
0
votes
1answer
23 views

Grails MongoDB doesn't save in afterUpdate

I'm trying to put some of my domain classes into the MongoDB using the mongoDB grails plugin. Some of the classes stays in MySQL. Everything works fine even the saving of domain class instances into ...
1
vote
0answers
22 views

How to authentication API controller

I'm wondering if there's anyone who can explain to me how I have to construct my Authentication API controller. I have a native IOS application I have a grails backend service For the moment I'm ...
3
votes
0answers
33 views

Igonre websocket connection in Spring Security SavedRequest

I have Grails application with spring-security-core plugin and Atmosphere framework. If I log out from page that have opened Websocket connection then spring security keeps url of WebSocket ...
0
votes
1answer
28 views

What is the ideal Grails class domain for this tree structure

I'm developing a website that need categories with sub categories. My current domain class is: package com.abc class Category { String title String description Category parent ...
1
vote
1answer
21 views

How to Display Exception In Grails?

a have a problem with my code. how can i handle an error from service to my gsp? i tried it with render from service or controller, Validation error occured during call to save(): - Field error in ...
0
votes
1answer
20 views

Grails, querying self-referencing table

I have a table with a self-referencing field: Class Book{ Integer id String name Book version } When I add books without the "version", the version field is null now I have to query ...
0
votes
2answers
34 views

Testing grails controller that has a bean from src/groovy

I have a class in src/groovy class Something { def foo } this is in resources.groovy beans = { mySomething(Something) } In my Controller I use this : class MyController { def ...
0
votes
1answer
24 views

How to set the MaxPermSize in Grails 2.2 running on Tomcat 7 0 39?

When running my Grails application on Tomcat I want to increase the MaxPermSize. Is there some flag I can set in the config.groovy or do I have to modify the Tomcat configuration? How do I config the ...
0
votes
2answers
25 views

How to get GWT Plugin running with Grails?

When using the grails GWT plugin I have trouble to get my dependencies refreshed. I inserted compile ":gwt:0.8" into my BuildConfig.groovy and run: grails refresh-dependencies. My Grails version ...
0
votes
1answer
34 views

Adding DataTables plugin to Groovy Grails Tool Suite

I am trying to add DataTables to my Groovy/Grails project in order to clean up my tables and to add extra functionality. I currently am having problems getting it to even work. I added the download ...
0
votes
1answer
19 views

No hibernate session when bootstrapping data with multiple databases in grails

i have trouble to save domain class objects into dbs other then the default dataSource. it should be said that I can read from the log database, but can not save (UserLog.list() works). when i run the ...
0
votes
0answers
35 views

Spring Security Plugin Authentication Failure Issue

I installed Spring Security Core plugin which provided me a login controller. I then created a user in the BootStrap.groovy def init = { servletContext -> if (User.count() == 0) { def ...
0
votes
1answer
22 views

Grails setting locale does not change language

I am using Grails 2.0.3 in my project. I would like to implement internationalization to my application. As far as I read from this documentation I understand Grails have an out box support for ...
0
votes
0answers
23 views

Is there a better way to handle data access based on user's authentication? [closed]

Introduction The system is built on grails and accessed by different peoples in one company. Data is stored in database. As you know, there are report chain between peoples, like employee report to ...
0
votes
2answers
52 views

How can I use map in this kind of situation in grails?

I need to display server info that are running up on ec2. I have managed to display them as a json, but now i only need to display certain fields. The following shows how I am displaying the ...
0
votes
2answers
30 views

grails: include multiple objects in a single list

I am new to grails and I am kinda stuck; I have a controller which looks like this: class MusicController { ... def index = { redirect(action:list,params:params) } def list = { ...
0
votes
1answer
26 views

Query MongoDB between two dates groovy

I'm trying to get all documents between two dates using groovy. I've tried several approaches and haven't been successful. Most lately I've tried the approach listed here Java/MongoDB query by date ...
0
votes
0answers
15 views

ListItemRenderer 'data' parameter

I am using Listitemrenderer(Zk UI and Grails) to render a list of books from database table called "book". I have different types of books in the table. the book types are determined by the bookType ...
0
votes
1answer
32 views

Obfuscate grails application

Has anyone had any success with obfuscating a Grails application with a tool such as ProGuard (http://proguard.sourceforge.net/)? I suspect that it's actually not possible to do this, since much for ...
0
votes
1answer
25 views

Is there a 'contains' functionality on a collection of ObjectId property of a domain object for withCriteria?

I have a Subscription domain object which has a List of ObjectId as one of its properties, say 'subscribed'. I'm on Grails 2.1.2 and MongoDB. class Subscription { ObjectId id ...
1
vote
0answers
25 views

Field error in object 'talent.CandidateProfile' on field 'core': rejected value [null];

1:declared field name as a name="db_address1" <div class="fieldcontain ${hasErrors(bean: candidateProfileInstance, field: 'core.db_address1', 'error')} "> <label ...
0
votes
1answer
23 views

How to implement a dropdown list from the domain class in grails

In my grails project i want to implement a drop down list. As we define, String priorityType in the domain class, it generated as a normal text field to input data. I want to know how define stage ...
0
votes
2answers
32 views

Grails - getting job trigger values from a config file

In my grials application I have a job that runs, and this its trigger defenition: static triggers = { simple name: 'myJob', startDelay: 1000, repeatInterval: 36000000 } I would like ...
0
votes
1answer
34 views

How does Grails merge 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
15 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
28 views

Grails g:if tag test request URI

I am somewhat new to Grails and not sure how to accomplish this. I am dealing with a navigation list in my gsp file. What I am trying to do is test whether the request URI starts with a given string ...
0
votes
0answers
35 views

Grails StaleObjectException during domain object save

I have already created a whole web application. I have started some load tests and sometimes I got StaleObjectException. I have interaction with database in several places and I would like not to ...
0
votes
0answers
33 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 ...
0
votes
0answers
19 views

GORM (Hibernate) tries to map non-domain classes; gives DuplicateMappingException

I am upgrading my Grails app from version 2.1.0. Prior to this the application was behaving fine. I downloaded and set-up the new version of Grails (initially I tried version 2.2.1 but tried going to ...
0
votes
0answers
17 views

Why doesn't run from war inject a Service for the Grails plugin?

The Grails application has a plugin with a service consumed by a GORM listener within the plugin. Everything works fine if Grails is started via grails run-app. The service is not injected if Grails ...
0
votes
3answers
32 views

Grails - Recreate database schema for integration test

Is there a convenient way to force Grails / Hibernate to recreate the database schema from an integration test?
0
votes
1answer
36 views

Grails query cache is not used

I'm trying to cache the following query that is called from a controller: def approvedCount = Book.countByApproved(true, [cache: true]) I have enabled the 2nd-level cache for the Book class, by ...

1 2 3 4 5 229