Questions tagged [grails-2.4]

This is the release of version 2.4 of Grails, a dynamic web application framework built on Java and Groovy, leveraging best of breed APIs including Spring, Hibernate and SiteMesh.

Grails is a dynamic web application framework built on Java and Groovy, leveraging best of breed APIs including Spring, Hibernate and SiteMesh.

Se also:

116 questions
0
votes
1 answer

I want to upgrade grails from 2.3.6 to 2.4.3, but facing issue with plugins

I'm currently using grails Ver. 2.3.6 and want to upgrade to 2.4.3. I have dependency of plugins. Some of them are available on grails plugin repository but not all. taggable: 1.1.0 is released but grails repository still shows taggable:1.0.1. I…
Santosh
  • 55
  • 1
  • 9
0
votes
1 answer

StaleObjectStateException when using Grails dynamic scaffolding

I am using dynamic scaffolding to create quick out of the box controllers and views to administrate the domain objects (e.g. only visible for admins). class EventController { static scaffold = true } Whenever I update a domain instance of Event…
saw303
  • 8,051
  • 7
  • 50
  • 90
0
votes
1 answer

Web app reload issue in Groovy/Grails Tool Suite

I have ggts-bundle bundle 3.6.1 64 bit with JDK 7 (jdk1.7.0_67) on Win7 64bit. I have grails home setup as GRAILS_HOME and grails version grails-2.4.3. When i create a new action/method in the controller class in the tool suite and hit save and…
jamesT
  • 329
  • 2
  • 4
  • 18
0
votes
1 answer

Grails Service in Production Environment returns Null

I'm using Grails 2.4.3 and I have a service returning null only in the production environment. If I run it in the Dev environment, the service responds correctly. Even if I generate a war file using Development it will work, but if I generate a war…
Brandon Wagner
  • 893
  • 9
  • 27
0
votes
1 answer

Unable to figure out maven issue

I am new to maven and trying to learn it. I am currently trying to build my grails application using maven. While compiling the pom I was getting this error Failure to find org.codehaus.groovy:groovy-all:jar:2.4.2 in…
Rammohan
  • 493
  • 6
  • 27
0
votes
1 answer

Grails 2.4.2 java.sql.Connection object

I have upgraded my project from Grails 2.2.3 to 2.4.2 using hibernate 4. (4.3.5.4) There is a service in this project that uses Oracle spatial queries and processes to generate results. Converting an Oracle JGeometry object to an Oracle STRUCT…
Graham H
  • 125
  • 12
0
votes
1 answer

Grails 2.4.3 App Deployment Error on Tomcat

Trying to deploy a Grails 2.4.3 application to Tomcat 7.55 keep getting this error: LifecycleBase.start(LifecycleBase.java:150) at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:901) at…
Brandon Wagner
  • 893
  • 9
  • 27
0
votes
1 answer

No edit link in list scaffold view when first field is nullable

Let's say I have a Domain Class (let's call it Person) with various String properties, like the following: class Person { String favoriteColor String favoriteAnimal static constraints = { favoriteColor(nullable: true) …
BrianH
  • 2,140
  • 14
  • 20
0
votes
1 answer

Passing the value of textbox as form id

Trying to pass the value entered in a textbox by a user as the id of the form. Code snippet below. This always passes params.id = "index" in my controller. If i hardcode form id="someText" it passes params.id = "someText" to controller. Due to…
Da_Vicki
  • 91
  • 1
  • 8
-1
votes
2 answers

Error compiling Grails 2.4.2 application when adding Spring Security Rest plugin to BuildConfig.groovy

I have a Grails 2.4.2 application working with Spring Security Core and I'm trying to implement a Restful API with authentication. For this, just added Spring Security Rest v1.5.4 as a plugin in my BuildConfig.groovy file, as follows: …
-1
votes
1 answer

grails-mongodb: findAllBy*InList not returning results in order

I'm using grails2.4.4 with mongodb plugin version 3.0.3. I'm facing issue while getting results of my domain object. I'm using below code: My domain: Employee{ ObjectId id String name } I have list of ids , using below code to fetch…
kaluva
  • 621
  • 8
  • 27
1 2 3 4 5 6 7
8