0
votes
1answer
19 views

Grails Class with hasMany

I have this domain class that has a one-to-many relationship as with dynamic scaffolding show below: Domain: package mienapp class Announcements { String user String title String ...
0
votes
1answer
45 views

Add custom headers to response after “render as JSON”

I am trying to add a custom HTTP header to the response of a certain set of controllers using Grails Filters: class ApiFilters { def filters = { xwingFilter(uri:'/api/**') { after = ...
-1
votes
0answers
30 views

Need some sample Grails 2.3 applications

Please provide any sample applications. I am getting exceptions in every bit of code change. Please help me by providing some sample grails 2.3 applications. I search online, i am not able to fine ...
1
vote
3answers
81 views

How to migrate Grails 2.1 to Grails 2.3 application

I am migrating my application from Grails 2.1 to 2.3. I am getting lot of errors after migration - I want some sample applications with Grails 2.3 and spring integration. I did some HelloWorld sample ...
0
votes
1answer
86 views

Grails 2.3 - run-app not working

Please help me, i am getting error while running my grails app. My application working in Grails 2.1.4. I am using Groovy 2.1.* Java 1.7 Tomcat 7.0.37 I upgraded my application from Grails ...
0
votes
1answer
38 views

Cannot obtain DBObject for transient instance, save a valid instance first

Cannot obtain DBObject for transient instance, save a valid instance first I am using MongoDb plugins in Grails 2.2.2 when i am creating a new user.. its saves but.. when i trying to edit telephone ...
0
votes
1answer
37 views

grails 2.1.0 Chained select relation

I want to make chain select box in my view page. I have country select box, and city select box. And in city domain I have country id. Now I want to show cities of a specific country when I select a ...
0
votes
1answer
39 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
0answers
62 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
43 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
1answer
32 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.
0
votes
0answers
84 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
63 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 ...
3
votes
1answer
105 views

how to control dynamic rows coming from a form in a controller

I have a form which sends over dynamic number of rows and columns. Here is a demo on jsFiddle of how the form looks like. I have columns of Red, Yellow, and Green and there could be dynamic number ...
4
votes
1answer
185 views

Deserialize a JSON object with support for embedded associations

Is there an easy way to deserialize a JSON string to a domain class with support of embedded association; belongsTo and hasMany { name: "Customer", contact: { name: "Contact" } } class ...
0
votes
1answer
164 views

Modify params before saving domain object

I needed a domain class that held a list of Strings. It seems fairly well-known that GORM can't handle this, so I've worked around it. At first I tried using getters and setters in the domain class, ...
4
votes
2answers
2k views

Grails 2.2.0 Support in Eclipse

I am trying to create a grails 2.2.0 project using eclipse-jee-juno. It gives me an error Groovy compiler level expected by the project does not match workspace compiler level. Project compiler ...
2
votes
1answer
295 views

Use username as email, Spring Security UI plugin

I'm using the Spring Security plugin, in combination with the Spring Security UI plugin. They both work like a charm, but my problem is that I don't want my user to have a username, instead he/she ...
1
vote
2answers
193 views

Grail mail plugin - unable to add in multiple TO addresses?

New to grails world. I am having issues passing the comma seperated form values from a form into the 'TO' properties of the grails mail plugin. no matter what I try I can seem to get it to an array ...
0
votes
1answer
80 views

3 domains in grails, I want to access 3rd domain which is unassociated to the 2nd domain in 2nd domains view

Im stuck again. Its very frustrating coming from a ruby background. I have 3 domains. Domain A has many domain B's. Domain A hasMany Domain C's I want to be able to access domain C's records in ...
1
vote
1answer
72 views

Grails - 2 domains and 1 form create/update/edit issues

Having some mega frustration set in.Maybe Im trying grails too much like rails and active record. I have 2 domains.The parent is called 'report' and the child 'category'. The user creates a new ...
0
votes
2answers
125 views

MSSQL/SQL Query condition error

I have this 2 following SQL Queries on my grails controller: def query1 = sql.rows("select abc from table_one where cond = 1") The return result from query1 gives me [{abc=5}] def query2 = ...
2
votes
4answers
105 views

SQL Querying Database

I have this following query "select abc from table where val = 1" The result i got was [{abc=5}] However, I need just the integer value 5 from the result instead of the array[{abc=5}]. Anyone ...
0
votes
1answer
48 views

Inserting methods 'Controllers' in 'Services'

I have a class that manages my uploaders. It makes use of the plugin file-uploader 'and complements other information and rules of my application. I'm trying to create a service that manages some ...
1
vote
0answers
98 views

grails 2: reload of controller, break points, and shutdown

I experience some strange problems with a brand new grails 2 installation and project. my setup: windows 7 grails 2.1.1 intellij problems: when storing an entity i set a flash.message="foo"+x. ...
0
votes
4answers
395 views

Plugin missing while using ajax prototype in Grails 2?

Hello..I'm using Grails 2 and tried to implement the ajax call from gsp page to my controller..At first library prototype was missing in grails 2 i solve this using command grails install-plugin ...
0
votes
1answer
178 views

Failed to bind GSP params to a Command Object in Controller

My controller is something like this: class UserController{ def register= {UserCommand command -> println params println command.dump() // do something .......... ...
0
votes
0answers
65 views

Grails - one to many associations and some values are missing in update

Below are my domain classes Status is enum with values ACTIVE,DELETE class Audit { Date dateCreated Date lastUpdated String createdBy String updatedBy Status status = ...
0
votes
1answer
620 views

Unit test controller by calling multiple actions

I have a very similar problem to the one described in this question. (The main difference being that i am using Grails 2.1). Basically i want to write a unit test which does sth like: // set params ...
1
vote
0answers
180 views

Grails - bind JsonArray to Collection attribute

I have a REST controller that expectes a complex object in JSON format. Let's say, A.class has an association with a collection of B.class. class A { private List<B> values; ... } ...
0
votes
0answers
107 views

Grails 2.1.0 issue, handling request fail for form posting and works for direct navigation

I encountered a very strange issue with a grails application. When I'm posting a request using a form, my server return a 404 but if I'm trying to copy paste the url and navigation, it works. url : ...
0
votes
2answers
176 views

While Generating controller and view getting error : Can not set int field lms.Book.bookId to java.lang.Class

While generating controller and view for a Domain class as: class Book { static constraints = { bookId blank:false bookTitle blank:false } private int bookId private ...
0
votes
1answer
658 views

grailsApplication.controllerClasses filter in gsp

I search grailsApplication.controllerClasses filter in stackoverflow,and I follow that right answer. I write codes like that. <g:each var="c" ...
2
votes
2answers
448 views

Redirection in Grails Web-flow

I have question regarding redirection in Grails web-flow. I am in a view state which will allow users to enter the answers for a question. On 2 wrong attempts I should be able to re-direct the user to ...
0
votes
1answer
1k views

using <g:select> grails

I am using a to display list of profilenames. <g:select name="ProfileSelector" from='${ProfileList?.profileName}' id='ProfileSelect' noSelection="['null':' SELECT VT']" disabled="true" /> So ...
0
votes
1answer
124 views

Store a value in database generated from views

I have a variable computed in my javascript in a view in Grails. Now I wanted to save this value in the database at a corresponding place. How can I do that? For example: I have the address of the ...
0
votes
3answers
316 views

Can i call an controller action with POST-params from another controller as method?

I've a controller and some actions within. Am i able to call these actions as methods from another controller as if i would call this action with post params? I'm using the grails paypal plugin and ...
1
vote
1answer
228 views

how do i parse a array list of errors and display it as validation errors

Hi parse a arraylist of validation errors and diaply that. I have a arraylist [passwordinsufficientuniquechar, passwordmaxrepeat, passwordinsufficientuniqueno, passwordnotenoughnumbers] and i have ...
0
votes
1answer
176 views

Testing grails plugin controllers by itself

I created a simple grails 2.0.1 plugin with a domain "User". Created scaffolding controllers and views. But when I do grails run-app and goto the user/list url, I get the error No signature of ...
1
vote
1answer
1k views

Domain class hasMany fails to add entry

I'm a Grails noob so please excuse my noob question. I've created a domain classes User and Device. User hasMany devices:Device, and Device belongsTo user:User. It is important that only 1 device will ...