0
votes
2answers
58 views
Groovy - how to exit each loop?
I'm new to Grails/Groovy and am trying to find a node in a an xml file; I've figured out how to iterate over all of them, but I want to exit the loop when the target node is found. …
1
vote
1answer
19 views
grails - subdomain based projects and links
I am trying to develop a grails application that has "root" content (www.mydomain.com/about for example) but will also support "projects" based upon the subdomain of the request; f …
2
votes
1answer
19 views
Is it possible to catch / handle exceptions thrown from a Grails controller? Aop?
class MyController {
def myAction = {
throw new MyException("Test")
}
}
Is it possible to catch / handle the exception thrown by the code above? The following url-map …
0
votes
0answers
23 views
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
49 views
How do I enable Grails support in IntelliJ IDEA Community Edition 9.0 BETA?
The IntelliJ Groovy/Grails support in IntelliJ IDEA 8.1 is great.
However, I've recently upgraded to the new and recently open-sourced IntelliJ IDEA Community Edition 9.0 BETA. S …
0
votes
3answers
53 views
Groovy on Grails list - not working?
Removing an element from a list isn't working, which doesn't make any sense. Am I missing some special semantics peculiar to dealing with a Grails domain object list?
In controlle …
1
vote
1answer
25 views
URL with hyphens in Grails 1.1.1 or Grails 1.2 M4
Is there a way to configure Grails 1.1.1 or Grails 1.2 M4 to map a multi-word controller or action written in PascalCase or camelCase to automatically map to a URI with hyphens sep …
0
votes
0answers
17 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' …
0
votes
1answer
40 views
Disabling locking for non-critical Grails/GORM domain classes
Assume the following code in a Grails controller:
def action = {
ClassName o = ClassName.findByFoo(params.foo)
if (o) {
o.counter += 1
}
}
By default Grails uses optim …
0
votes
2answers
43 views
Grails 1.1 and how to info level logging
Which setting do I now use to produce logging output with 'log.info' statements within my own controllers?
Here's what I've setup in config.groovy and I thought placing my domain …
3
votes
2answers
83 views
Grails: Templates vs TagLibs.
In Grails, there are two mechanisms for modularity in the view layers : template and taglib.
While I am writing my own Grail app, I am often facing the same question when I need t …
0
votes
1answer
24 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 …
0
votes
1answer
29 views
Custom authentication
My system has 2 subsystems. Each subsystem has different set of users. Each user has an extra field "SystemName" that can be used to know which system this user belongs to.
In the …
0
votes
3answers
44 views
list.gsp FileNotFoundException when following Grails scaffolding tutorial with app-engine plugin
I'm trying to follow the grails tutorial here.
When I create a new controller using create-controller XXX.Card and modify it to use scaffolding as per the tutorial:
package XXX
…
2
votes
1answer
48 views
Why doesn’t grails.views.default.codec default to “html”?
The Grails Config.groovy setting grails.views.default.codec specifies the default codec used to encode data within ${...} in Grails views.
This config setting can take any of the …
