0
votes
0answers
11 views

Grails Resource Plugin - Require module with JS file when AJAX

in my grails app, I'm using the awesome resource plugin which wires all the dependencies. When I'm doing the ajax calls I always use <r:layoutResources disposition="defer"/> in order to render ...
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 ...
1
vote
1answer
39 views

Grails Data Migration Rollback

Hi I'm trying something very simple with Grails domain class. I am adding to my class a field and I want to use data migration plugin to rollback once so that the field I added gets removed. First I ...
0
votes
1answer
28 views

What is the best way to filter user input with a blacklist in Grails?

On my website I allow users to create user profiles where they can choose a username. class User { String username } What is the best way to filter and restrict forbidden words like porn or so ...
0
votes
0answers
38 views

Grails Enabling automatic migrations (Grails 2.2.2)

I'm testing Grails as a potential framework for our workplace. I'm using this tutorial found on Grails website to manage databases: http://grails.github.io/grails-howtos/en/manageDatabases.html I ...
0
votes
0answers
26 views

Grails Resources Plugin and AJAX loaded content

I got the following error when using the Grails Resource pulgin with ajax loaded content: ERROR [/buddyis].[default] - Servlet.service() for servlet [default] in context with path [/buddyis] threw ...
0
votes
1answer
51 views

how to get user information from Withings api on grails

I'm trying to get user information from Withings Api, i've already success login into Withings with Oauth using Scribe library(Java). But there is a problem when i sent request to get user information ...
0
votes
2answers
51 views

Groovy and Grails 2.1.1 - Unit testing and Mocking the elements of domain class

I need a little help in writing Unit tests for my project. I have created Unit test classes for my Controllers and Domain. My Question is- I have a domain class named employee It has- String id ...
2
votes
2answers
68 views

Grails Command Objects custom Validate Message Codes

When using command objects like: class UserCommand { String name static constraints = { name blank: false, unique: true, minSize: 3 } } you can use them to validate objects ...
0
votes
1answer
56 views

What is the best search plugin for Grails?

There are two very powerful search plugins for Grails. The Searchable Plugin and the Hibernate Search Plugin. Both are based on the Lucene search engine. Which plugin is the best? Are there fields ...
2
votes
2answers
74 views

How to exclude specific keywords from UrlMapping in Grails?

I use the following url mapping in Grails: "/$id"{ controller = "user" action = "show" } to map urls like mydomain.com/someusername How do I attach constrains to the url mapping to ...
1
vote
0answers
25 views

Grails 2.3 - ClassNotFoundException in jobs

I am using Grails 2.1.4 till now, and I have some groovy files in grails-app/job/ folder, for example RefreshCustomerMatrixJob.groovy. I migrated to Grails 2.3.M1, and start getting ...
0
votes
1answer
44 views

how to pass values through ajax using grails

<g:javascript> function yes(data){ var id=$('#id').val(); var pars = 'id=' + id+"&contact_preferences.email="+data; $.ajax({ url: "${createLink(controller: 'userform', action: ...
0
votes
1answer
43 views

want to hide id parameter from url in grails

I have a URL that looks like /myController/myAction/id. How could I hide the id in that URL so it looks like: /myController/myAction/username and still recieve id in controller
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 = ...
0
votes
0answers
56 views

Grails 2.3 - New Sample Project not working

i created a new grails 2.3 sample project. It is giving error while refresh-dependencies or run-app Loading Grails 2.3.0.M1 | Configuring classpath | Error ...
0
votes
1answer
46 views

What is the best way to generate HTML mail templates for the Grails mail plugin?

With the Grails Mail plugin you can either send plain text or html mails. When sending html mails like this: sendMail { to "fred@g2one.com" subject "Hello John" html(view: htmlTemplate, model: ...
1
vote
1answer
29 views

how to put values in grails select tag manually

how to put values in select tag in grails. <g:select name="country_name" > </g:select> like all country name USA,UK,AUS,SA,CAN,INDIA
0
votes
0answers
29 views

Grails 2.3.0.M1 - upgrade not working

I am getting some error while upgrade. What i did was: I downloaded Grails 2.3.0.M1, extracted, and changed in Eclipse -> Preferences->Groovy->Grails also. Changed the Groovy compile 1.8 to 2.0.7 I ...
0
votes
1answer
57 views

How to implement (unique) page views tracking in Grails?

On my app I have different pages where users can interact with. What I need is the following. I want to track: How many users are on each page? How many unique users are on each page? I want to ...
0
votes
1answer
68 views

How to add properties to the WEB.XML file using Grails WebXmlConfig Plugin?

I am using the WebXmlConfig Plugin of Grails. I use Version 1.4.1 of the plugin. I did: grails create-web-xml-config to generate the grails-app/conf/WebXmlConfig.groovy file. When I try to add a ...
0
votes
1answer
43 views

How to integrate dependencies from Github in Grails?

Is it possible to integrate sources from github in Grails BuildConfig.groovy? Normally, you would use the dependancy or the plugin section to integrate sources, but how can I integrate snapshots from ...
-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
80 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
84 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 ...
2
votes
1answer
103 views

Grails Mongo GORM Plugin - Mapping of Float and Byte is String instead of number

When using Grails MongoDB GORM plugin, I realized that Integers are mapped properly to mongo numbers, Long is mapped to NumberLong, etc. The only types which aren't map properly are Byte and Float. ...
0
votes
2answers
65 views

Can you use Groovy code to create and modify data in a Grails migration?

The goal - in a single deploy/restart, I want to create a new table and populate some records, as there will be code changes that expect this data to be there. The ideal - to write a migration that ...
0
votes
1answer
37 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 ...
-4
votes
0answers
35 views

How to use JQuery in grails 2.1.0

I want to use jquery in grails 2.1.0 framework.I know that jquery is built in here.But I don't know how to use this in gsp. I am new in grails. Can somebody suggest me with sourcecode please?
0
votes
1answer
40 views

how to retrieve data from mongoDb using grails 2.2.2

i am developing my first app in grails 2.2.2 and mongoDb. But i am stuck in "How to get data from mongoDb and Display In .gsp page"
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
1answer
84 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
56 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
73 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
61 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
58 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 ...
1
vote
0answers
66 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
41 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 ...
0
votes
2answers
59 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
38 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
31 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
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
2answers
158 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
1answer
55 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
72 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
115 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
62 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
130 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
52 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 2 3 4 5 9