0
votes
1answer
12 views
Grails client side validation
Hi !
How do you (if you) manage client side validation with grails ? Do you use a plugin or do you mirror your constraints using a javascript framework ?
Cheers
1
vote
0answers
8 views
Deploying multiple grails applications with Apache/Tomcat + Virtual Hosts
I haven't been able to figure out how to deploy multiple grails applications with Apache/Tomcat where a virtual host is mapped to each grails app
I can get it so that
http://virt …
1
vote
2answers
13 views
How to integrate a Liquibase migration into my grails build?
I have a Liquibase migration that I manually run to load seed data from several CSV files into my database. I would like to run this migration each time I run grails run-app.
I t …
0
votes
0answers
10 views
Best MVC design for rendering a grails template and passing data to this template?
Hi,
I have a template that renders a chart according to a given list (retrieved from my domain layer). This template is displayed several times (with a different list) on a same p …
0
votes
1answer
16 views
Grails GORM problem: Object references an unsaved transient instance
The Grails code below throws the following exception when trying to .save() the Foo object:
org.hibernate.TransientObjectException/
org.springframework.dao.InvalidDataAccessApiUsa …
0
votes
2answers
18 views
I’m searching for a Grails-Plugin to attach images to a domain class
Hi,
i am quite new to Grails and on the lookout for a plugin to attach files (images) to a model. something like a uploaded avatar-picture for a user.
in Ruby on Rails i used the …
0
votes
0answers
20 views
JSP PageContext from a Groovlet (Groovy Servlet)
I'm trying to use Groovlets in place of JSPs in an integration framework but one of the vendor's libraries relies on the javax.servlet.jsp.PageContext available in a JSP. I found …
0
votes
1answer
34 views
Grails bindData exclude not excluding
I'm trying to use 'bindData' method and exclude one field like so:
bindData(person, params, [exclude: ['responseItems']]);
The 'person' variable is defined by the class 'Person' …
1
vote
5answers
41 views
How do you manage developing with multiple versions of Grails using Windows?
We've been using Grails for a little while now and have been through a few Grails versions now. We don't always want to migrate our 'older' apps immediately but often use a newer v …
1
vote
2answers
68 views
+100
Grails log4j configuration
Hi,
I've repeatedly had problems with the DSL introduced by Grails in version 1.1 for configuring Log4J. My current configuration looks like this:
log4j = {
debug 'co …
0
votes
1answer
50 views
Completely bypassing Sitemesh parsing in Grails
How do I configure Grails to completely bypass Sitemesh?
Consider the following code inside a Grails controller:
def action = {
def html = "..."
render(contentType: "text/htm …
1
vote
1answer
28 views
Is it possible to exclude grails plugin from production environment?
I would like to use certain plugin in development environment, but would like to exclude this plugin from production and from generated war. What is the easiest way to accomplish t …
0
votes
1answer
39 views
Grails domain class relationship to itself
I need a way to be able to have a domain class to have many of itself. In other words, there is a parent and child relationship. The table I'm working on has data and then a colu …
0
votes
1answer
17 views
grails webservices returning an object List
I'm trying to expose a webservice via grails & cxf grails plugin.
this is the skeleton of the webservice:
class IssueService {
static expose=['cxf']
def List issue …
1
vote
2answers
19 views
Error while Querying a many-to-many relationship in Grails
class Address {
static hasMany = [addressGroups: AddressGroup]
...
}
class AddressGroup {
static belongsTo = Address
static hasMany = [addresses: Address]
Str …
