Grails is an open source web application framework which uses the Groovy programming language (which is in turn based on the Java platform). It is intended to be a high-productivity framework by following the "coding by convention" paradigm, providing a stand-alone development environment and hiding ...
0
votes
0answers
23 views
Grails 2.1.5 log
I configured a specific grails-tomcat server, with virtual host.
For this, I :
List item
create a war
extract all jars to place then in common tomcat directory except grails*
create a "nojars" war
...
0
votes
2answers
77 views
missing dependencies - Grails
i am getting error like this
| Loading Grails 2.1.4
| Configuring classpath.
| Environment set to development.....
| Packaging Grails application.....
| Compiling 2 source files.....
| Error Error: ...
1
vote
0answers
58 views
Grails GORM, eager fetch mode for multiple layers of domain class
I have the following domain structure :
class Survey {
Integer id
String title
static hasMany = [questions: Question]
static constraints = {
id()
title()
...
0
votes
1answer
89 views
Grails pollution between integration and unit tests
I know there's a lot out there about this particular topic, however I can't quite find anyone who has stumbled across my issue, and hopefully someone can explain this to me.
I have a Domain where I ...
0
votes
1answer
67 views
Problems injecting services in integration test
I have a similar problem that Integration testing Grails services with injection with this code:
@TestFor(DocumentosService)
class DocumentosServiceTest extends GroovyTestCase {
def myService
...
3
votes
1answer
55 views
Grails 2.1 How Can i add value in join table
I create 2 tables one Category and one Manufacturer, and There relationship is Many-to-Many,
So i use a join table,
I insert values into two tables individually. Now i want to join two table by their ...
3
votes
1answer
127 views
Groovy AST Transformation does not get applied during Grails Compile, only during Auto-Reloading
I have written a Groovy AST Transformation which only runs for me when Grails auto-reloads the class it is to be applied to. If I clean the project and start the application using run-app, the AST ...
0
votes
0answers
51 views
how to ignore duplicate requests in Grails controller action
We are using Grails 2.1.1 with Paypal express checkout. In Paypal payment success page, We enable the Auto return on, and also place a Manual Return button if user want to click to back.
If user wait ...
1
vote
1answer
79 views
Grails 2.1.1 and spring security messages
Anyone experiencing the error messages for failed logins not appearing?
I am upgrading a grails 1.3.7 app to grails 2.1.1 and I have 2 issues with the spring security core functionality.
First, if I ...
0
votes
2answers
380 views
Add a <servlet> into web.xml in Grails 2.1
I want to add a node into web.xml.
I tried to use a webxml grails plugin, but look like it can't manage nodes. Any help or example will be apreciated...
2
votes
1answer
97 views
Can you use the Grails Wrapper to upgrade Grails?
I can't find anything in the Grails docs, but from the wording of the description of the Grails Wrapper, it should be possible.
Can you use Grails (via an installed Grails Wrapper) to upgrade the ...
5
votes
1answer
231 views
Does Grails 2.1.0 Require Groovy 1.8?
I recently updated a Grails app to 2.1.0, but when I war the project I get the following error:
java.lang.NoClassDefFoundError: org/codehaus/groovy/transform/powerassert/ValueRecorder
Groovy ...
0
votes
1answer
129 views
Grails 2.1.1 sending mail
I installed the mail plugin:
grails install-plugin mail
I added my config according to the plugin:
grails {
mail {
host = "smtp.gmail.com"
port = 465
username = ...
0
votes
1answer
100 views
Grails 2.1.1 with Terracotta and Ehcache integration
I'm trying to integrate Grails 2.1.1 with Terracotta and Ehcache but I'm not getting any good results whatsoever.
Could anybody give me some advice in order to configure it? I'm a little bit ...
2
votes
2answers
261 views
having issues deploying grails project with cxf plugin onto WAS 8
I am fairly new to groovy/grails and trying to deploy a grails app(WAR file) which uses Grails 2.1.1 and CXF plugin 1.0.1 to WebSphere 8.
This is the first time I am deploying Grails 2.1.1 app to ...
0
votes
1answer
517 views
Request params not getting bound to grails command object
I've upgraded to use Grails 2.1.1 from Grails 1.3.6 and some command objects which were working are no longer getting data binding from the request parameters.
I created an experimental controller to ...
0
votes
0answers
166 views
Cannot deploy grails on tomcat
When deploying a grails 2.1.1 war to tomcat7, I get the following errors:
Configuring Spring Security Core ...
... finished configuring Spring Security Core
Nov 19, 2012 9:17:08 AM ...
-1
votes
2answers
265 views
How to deploy Grails with MongoDB on AppFog/CloudFoundry?
Grails works great with the mongodb plugin locally but I'm having issues on AppFog.
The instructions for deploying Grails on AppFog are fairly clear for databases other than MongoDB. The ...
0
votes
1answer
165 views
Grails Fields plugin - How to get datePicker to include constraints
Grails 2.1
Fields plugin 1.3
I'm trying to figure out how to customize the field rendering of Dates so that will include the constraints (attributes) defined in the domain class.
Based on the ...
0
votes
0answers
96 views
compiling grails application with maven
We have a local repository which has grails and the grails plugins. When I try to build the project, I get an error
Could not resolve dependencies for project ...
1
vote
1answer
289 views
Grails refresh-dependencies doesn't download snapshot dependency from local maven repository
I am using Grails 2.1.1 and Maven 3.0.3.
In my buildConfig.groovy, I have pom true and I generated the pom.xml via grails create-pom. In this pom I have a dependency with ...
0
votes
1answer
267 views
grailsApplication not getting injected in a service , Grails 2.1.0
I have service in which i am accessing few configuration properties from grailsApplication
I am injecting it like this
class MyWebService{
def grailsApplication
WebService ...
2
votes
1answer
194 views
No application logging from Grails application?
I have a simple grails app and some logging in the controller. However, no matter how I configure the logging, I do not see my application log message (even though I can be overwhelmed with grails ...
0
votes
1answer
309 views
Grails - BootStrap.groovy - null pointer issues
Having issues with BootStrap.groovy loading development data. Prior it had always loaded data, but now has stopped throwing the below error when running grails run-app.
Message: Validation Error(s) ...
4
votes
0answers
503 views
grails 2.1.1 does not reload static resources
i have a fresh grails 2.1.1 installation, windows 7.
static resources (css) don't reload in development mode.
according to ...
-2
votes
1answer
138 views
Grails 2.1 and CustomDateEditor doesn't seem to work
I'm having trouble using CustomDateEditor in Grails 2.1.0
What I'm trying to achieve:
Date class is now rendered as 08/10/2013 00:00:00 CEST but I want to change the format to 08/10/2013 (dd/MM/yyyy ...
1
vote
0answers
315 views
grails gradle plugin
I am new to Grails/Gradle. I am trying to write a simple build.gradle to build my sample project. I have a task "build" which internally should do the following in the given sequence.
clean
compile
...
0
votes
0answers
99 views
grails unit-testing criteria with orderBy child property
I have issues querying data based on the following (working code outside of the unit-test):
return DataLogEntry.where {
eq('resolution', 1)
lt('tsp', to)
...
0
votes
3answers
663 views
Any idea why requests to vertx embedded in grails are synchronously queued up
Environment: Mac osx lion
Grails version: 2.1.0
Java: 1.7.0_08-ea
If I start up vertx in embedded mode within Bootstrap.groovy and try to hit the same websocket endpoint through multiple browsers, ...
8
votes
4answers
827 views
Adding child elements onto a domain object before the domain object is created
(Sorry if this is a noob question, I couldn't find the answers on the grails reference)
I have the following domain heirarchy :
User > (has many) Survey > (has many) SurveyQuestion > (has many) ...

