0
votes
0answers
11 views
Grails optimistic locking strange behaviour
I've been trying to make GORM throw an optimistic locking error in an integration test. It has been said before that it is not possible to test for concurrent update errors without resorting to …
0
votes
2answers
15 views
Grails: nested command objects
Hi,
In my grails app I have an outer command object that contains a list of other command objects:
public class OuterCommand {
List<InnerCommand> innerCommands = ListUtils.lazyList([], …
1
vote
1answer
29 views
How to make use of Grails Dependencies in your IDE
Hi All,
So I finally got my dependencies working with Grails. Now, how can my IDE, eg IntelliJ or Eclipse, take advantage of it? Or do I really have to manually manage what classes my IDE knows about …
1
vote
1answer
14 views
Grails GORM composition or hasOne?
I'm a bit confused about the differences between using the static hasOne map and composing objects in domain classes. What are the differences between the two? ie.
class DegreeProgram {
String …
0
votes
1answer
39 views
Grails PUT request with XML
I have a put request that I am trying to unit test for creating a user object.
Unit Test:
void testPUTXMLResponse() {
def mockUser = new User(username:"fred", …
2
votes
1answer
20 views
Clearing Grails Dependency Cache
Hi All,
I run into some problems when trying to solve a problem I had with SNAPSHOT maven dependencies (see here).
When running grails dependency-report, cached dependencies get listed, more or …
0
votes
1answer
25 views
Grails and Local Maven Dependencies
Hi All,
I'm developing a small web frontend in Grails. It is basically a "ultra light-weight" client app that is connected async through JMS.
I have two dependencies in the project that I would like …
0
votes
0answers
10 views
How to use grail authentication plugin action from link?
I am using the authentication plugin in grails. The logout button code is something like this:-
However this creates a submit button on the page. I want to have a link () instead. …
1
vote
1answer
48 views
Can I Change Look / Feel Of Scaffolded Pages With Mostly CSS?
I am using a web framework (Grails, similar to Rails) that has abilities to auto-generate a lot of code through scaffolding. As a result, all of my CRUD pages are currently automatically generated, …
1
vote
3answers
42 views
How Handle multiple customers in a single grails application with customised look and feel?
Hi there,
My app needs to support multiple customers at run time. They will all be displaying the same data, using the same controllers, services but with different layouts, css and images.
My …
0
votes
1answer
32 views
Grails Quartz Job has no Hibernate session after upgrade, causing LazyInitializationException
I've upgraded a Grails 1.0.4 application to 1.1.1. After upgrading, I'm repeatedly getting Exceptions when executing my Quartz jobs (using Quartz plugin 0.4.1). The plugin is used to manually schedule …
1
vote
2answers
56 views
Hurdles with Grails development
Have been developing with Grails for couple of weeks now,
Though I've loved the experience and the possibilities, I've seen following problems starting up.
Please share if you've had similar …
0
votes
1answer
30 views
Grails config files: best practice
Hi,
Just wondering what is the 'best practice' when adding config key-value pairs to your grails app.
Should you just add to Config.groovy or create new files.
I tried creating a new config file …
0
votes
2answers
19 views
How to configure Grails to work with Apache Derby?
How to configure Grails to work with Apache Derby instead of HSQLDB
0
votes
2answers
31 views
How to configure grails classpath in order to add “src/groovy” folder ( in Linux environment)?
Hi,
I am currently porting my development environment from Windows to Linux.
Under Linux, I noticed a "No class found" compilation error related to my classes in the directory …
