2
votes
3answers
84 views
Overriding grails.views.default.codec=’html’ config back to ‘none’
If I leave grails.views.default.code='none' in the grails Config.groovy, it's up to me to HTML encode my expressions explicitly in the GSP files: ${myValue?.encodeAsHTML()} …
1
vote
How to check if element in groovy array/hash/collection/list?
If you really want your includes method on an ArrayList, just add it:
ArrayList.metaClass.includes = { i -> i in delegate }
…
1
vote
What does it mean for a programming language to be “on rails”?
As said above, Rails and Grails provide conventions for web application development -- naming your pieces a certain way and putting them in the right places get your application working by default …
1
vote
Adding a method to a domain class
If you want your method to appear to be more like a property, then make your method a getter method. A method called getFullName(), can be accessed like a property as ${person.fullName}. Note the …
1
vote
Specify order of fields in DDL generated from GORM classes?
There doesn't appear to be a way to specify the ordering, but you could always create your own tables as you want them and provide name mappings in your domain classes.
You could also let GORM crea …
1
vote
Overriding grails.views.default.codec=’html’ config back to ‘none’
I may have a solution. I'm not sure how accepted it is, though.
I can set the default codec for expressions to HTML, but then use <%=myValue%> notation in GSP instead of ${} expressions …
2
votes
Overriding grails.views.default.codec=’html’ config back to ‘none’
To summarize the various levels at which the codec can be applied:
Set Config.groovy's grails.views.default.codec='html' to get HTML escaping by default on all ${expressi …
