user
09/18/2025, 10:03 AMMarc Fishman
09/18/2025, 4:00 PMwhere
queries, as namedQueries are deprecated and not supported in Grails 6+ (from my understanding), but we're finding the lack of ability to chain them together really limiting.
I'm curious if others have any similar experience or alternative suggestions. I've gone through lengthy discussions with ChatGPT and was kind of disappointed with the results. Any thoughts, ideas, or best practices welcome!Stephen Lynch
09/18/2025, 8:16 PMuser
09/21/2025, 6:34 PMbootWar {
from('grails-app/views') {
into 'WEB-INF/grails-app/views'
}
}
user
09/21/2025, 6:39 PMuser
09/22/2025, 2:16 PMbillgonemad
09/22/2025, 2:58 PM|Generating SSL certificate
Warning |
Unable to automatically generate SSL certificate, manual configuration required. Set 'server.ssl.key-store' in application.yml
Paul Trudel
09/24/2025, 6:52 PMCannot resolve reloading agent JAR: Failed to resolve imported Maven boms: Could not find org.grails:grails-bom:7.0.0-RC2
These repos only have BOM versions up to 7.0.0-M3
https://repo.grails.org/ui/native/core/org/grails/grails-bom/
https://repo.maven.apache.org/maven2/org/grails/grails-bom/
Is there another repo that I need to add to my build.gradle
that contains these artifacts?rss
09/24/2025, 9:04 PMmuser
09/25/2025, 8:25 PMJames Fredley
09/25/2025, 9:34 PMpablo.pazos
09/27/2025, 6:07 AMrss
10/02/2025, 1:54 PMDanielC
10/02/2025, 8:30 PMDave
10/04/2025, 4:11 PMDave
10/04/2025, 4:12 PMjdaugherty
10/04/2025, 4:22 PMDave
10/04/2025, 4:32 PMmatt.aguirre
10/06/2025, 4:28 PMuser
10/07/2025, 1:41 PMMark Johnson
10/08/2025, 2:06 PMspring:
config:
import: >
optional:file:${PATH_EXT_CONFIG:-/app/config}/application.yml,
optional:file:${PATH_EXT_CONFIG:-/app/config}/application.groovy,
optional:file:${PATH_EXT_CONFIG:-/app/config}/custom-application.yml
Mark Johnson
10/08/2025, 2:33 PMsbglasius
10/08/2025, 3:56 PMMark Johnson
10/09/2025, 8:30 AMgrails:
config:
locations:
- optional:file:${PATH_EXT_CONFIG:-/app/config}/application.yml
- optional:file:${PATH_EXT_CONFIG:-/app/config}/application.groovy
- optional:file:${PATH_EXT_CONFIG:-/app/config}/custom-application.yml
assuming that in
#application.yml
a.list:
- name: example1
description: desc1
and assuming that in
#custom-application.yml
a.list:
- name: example1
description: desc1
- name: example2
description: desc2
which one will should take precedence
also is optional:
valid in your plugin i dont see any reference, can i dispense with itrss
10/09/2025, 4:24 PMgiangio
10/09/2025, 4:47 PMgrails:
plugin:
springsecurity:
csrf:
enabled: true
tokenName: _csrf
headerName: X-CSRF-TOKEN
Arjang
10/09/2025, 5:28 PM@Secured("hasRole('ROLE_ADMIN')")
def index(Integer max) {
But it works if we use Static RequestMap (Doc section 4.5). Is this a correct behaviour?James Fredley
10/09/2025, 9:36 PMJames Fredley
10/09/2025, 9:45 PMJames Fredley
10/09/2025, 9:58 PM