I created a REST service in Grails to accept data from a python script. The python script generates an XML representation of the object graph and submits it to the controller. Things are for my fla
Tag: Grails
GRAILS – WAR packaging error: The encoded string is too long
I use grails 2.3.6 and I get the following error during execution
grails dev war Error:
|Compiling 84 GSP files for package [test]
.Error
|
WAR packaging error: encoded string too long : 79912 bytes How can I prevent this error?
I use grails 2.3.6 and I get the following error during execution
GRAILS does not have the correct encoding Unicode character
In my grails application, unicode characters are not correctly encoded.
I use grails 1.3.7 and tomcat 7.0.22. Below This is the setting I configured for unicode support in my application:
Hibernate – GRAILS Domain Relationship
I have a class called School, which has many students, so now when I use School.read to read the school instance, I don’t want all students Have been taken out eagerly, so I changed the laziness of
Hibernate – GRAILS and PostgreSQL do not generate tables
So I have some simple domain classes, I make sure not to use any PostgreSQL (or any other vendor) reserved words. Executing grails schema-export will generate a DDL, when targeting the same When th
GRAILS default Hibernate cache configuration
The Grails 2.0.0 reference manual shows the following as the default Hibernate cache configuration
hibernate {
cache.use_second_level_cache=true
cache.use_query_cache=true
cache.provider_c
How to configure distributed cache in grails (do not use Terracota)
I want to deploy my application (Grails 1.3.5) in two or more tomcats (7.0). I managed to do it without problems, but now I want to use RMI configuration My cache (ehcache).
What I have done
GRAILS – How to retrieve the latest created database entry?
I have the following classes and need to manually add the nextId field.
class SomeIdClass {
Family family
Integer nextId = 0
long timeCreated = new Date().time } So far, I have been trying t
Where is GRAILS asset pipeline configuration grails.assets.excludes?
Where should I configure grails.assets.excludes for the Grails asset pipeline?
According to http://bertramdev.github.io/asset-pipeline/guide/configuration.html, you can include or exclude Ass