0
votes
0answers
88 views

Hide relationship field from view via domain class / scaffolding

I need to hide a relationship field from view that is generated by scaffolding in Grails. I found similar question and answer: is there a way to hide fields on the view part of the grails crud ...
0
votes
1answer
81 views

Spring DSL editing and saving in code - is it possible?

I need to configure spring beans in grails dynamicly and save configuration in project so that after server restarting changed configuration do not lose. Is it possible to do it by using spring DSL ...
2
votes
2answers
207 views

How to make IntelliJ IDEA recognize the Grails database migration plugin's DSL?

With the fabulous db migration Grails plugin, it is really easy to bundle Liquibase database migrations into a Grails project so that my schema can be versioned along with my application code and ...
3
votes
1answer
171 views

Intellij IDEA-Grails GDSL Not Working

I tried to use GDSL Scripts for my grails project in IDEA. I tried things as shown in the Guide: GDSL Guide. The Steps I followed were: Created a myDef.gdsl file in my project home(i.e. in the ...
1
vote
1answer
774 views

How to use Spring DSL in Groovy to inject dependency based on environment (dev, qa, prod)?

We've built a web app in Grails/Groovy. In groovy, we built a pluggable caching component to provide caching of large http response streams in the Grails app. We want to inject the cache ...
0
votes
2answers
182 views

Grails: master domain field by detail domain field [hasMany]

There are domains: class Order { static hasMany = [execDepartments: Department] String orderNo //boolean signature ... } class Department { String name ... } I want to add boolean ...
3
votes
1answer
311 views

Dynamic method definition with GroovyDSL in IntelliJ

I was trying to define a dynamic method using the GroovyDSL scripting capabilities in IntelliJ. The starting guide "Scripting IDE for DSL awareness" gives you a good idea on how to get started with ...
-1
votes
1answer
136 views

classpath reosource as value spring DSL

I want to have some alternative to this using Spring DSL in Grails. <bean name="someName" class="SomeClass"> <property name="resource" value="classpath*:Queues.xml"></property> ...
1
vote
1answer
155 views

grails urlMappings dsl

I am trying to understand what happens behind the scenes of a grails url mapping call for example: "/pages/admin"(controller:"admin", action:"admin") Since this is valid groovy syntax, how does the ...
0
votes
1answer
225 views

Grails domain class. Random field

I have this Grails domain class: class Main { Random r; static constraints = { } } and in database i see, that Random its - tinyblob. In ORM DSL Documentation i not find ...
1
vote
0answers
575 views

Creating a CXF endpoint in Grails resources.groovy instead of resources.mxl

I know how to create CXF endpoints in the resources.xml, but I am keen to lean to use the spring bean builder DSL that is used in the resources.groovy instead. I sort of understand the syntax and have ...
7
votes
3answers
18k views

log4j in grails : how to log into file?

I have this log4j configuration in my grails config.groovy log4j = { error 'org.codehaus.groovy.grails.web.servlet', // controllers 'org.codehaus.groovy.grails.web.pages' // ...