Questions tagged [grails3.2.0]
48 questions
0
votes
1 answer
Grails 3.2 - object version doesn't update
Here is simple structure:
class Dom1 {
/* some props */
Dom2 dom2
}
class Dom2 {
/* some props */
}
Let's say a dom2 object has been initialized.
If i create dom1 object like this:
def dom1 = new Dom1(dom2: dom2).save(flush:true)
i've got…

Sergey Linnik
- 397
- 4
- 14
0
votes
1 answer
Grails 3.2.0 Interceptors are not working
When i am migrating my project from grails-2.4.4 to grails-3.2.0.
Configration :
Java 8
Grails 3.2.0
Gradle 3.1.
I am also migrating filters to interceptors.
Here is my interceptor :
class MemoryUsageInterceptor {
MemoryUsageInterceptor() {
…

hedha
- 266
- 1
- 2
- 10
0
votes
2 answers
Grails 3 - get rendered view from service
I'm using Grails Views and want to store the JSON outputted from a rendered template in the database. I'm not trying to send the rendered template to the user, only to store it for later user. How can I get do this?

Anonymous1
- 3,877
- 3
- 28
- 42