Russell Morrisey
Russell Morrisey
@CosmoFruit The new setup is documented in the migration guide linked by the OP
Any update on this issue? I am struggling to figure out how to specify multiple sort params with spring data's Traverson Java client. It looks like it's currently not possible...
This issue affects Grails 3.3.0 Angular projects when executed with client:bootRun. After the server is started via the gradle task, stopping the gradle task with Ctrl+C does not stop the...
OK. I was able to rep it consistently using the steps above (copying the war created by gradlew assemble from build/libs/, renaming to ROOT.war, and dropping it in webapps.) I...
I noticed this code in ResolvableGroovyTemplateEngine, which seems relevant. Still in the process of debugging. ``` if (Environment.isDevelopmentEnvironmentAvailable()) { template = attemptResolvePath(path) if (template == null) { template = attemptResolveClass(path)...
In my environment, when the app is run from Tomcat, the `baseDir` property on the GenericGroovyTemplateResolver is getting set to: `.\grails-app\views` This path is not correct, since the JVM's current...
I am debugging the `GenericGroovyTemplateResolver.resolveTemplate()` method
I tried to work around this by setting the base dir: `-Dbase.dir=D:\Program Files\Apache Software Foundation\Tomcat 9.0_Tomcat9-QnA\webapps\ROOT` I verified that the setting was applied using the debugger, but it didn't fix...
It seems that when the app goes to non-dev mode, it switches from path-based resolution to class-based resolution. The class-based resolution's behavior does not match the path-based resolution's behavior in...
@jameskleeh When you get the time, can you check in your debugger and see where your app's behavior is diverging from mine? Can you verify the paths given above? The...