grails-core icon indicating copy to clipboard operation
grails-core copied to clipboard

The Grails Web Application Framework

Results 209 grails-core issues
Sort by recently updated
recently updated
newest added

### Expected Behavior I have a number of plugins that are also stand alone apps. i.e. they have a web user interface, but they also provide services (domain classes) to...

### Expected Behavior Grails 5, JDK 11 app should stop without any error. ### Actual Behaviour Stopping app produces error `| Error Failed to start server java.util.concurrent.ExecutionException: org.gradle.internal.UncheckedException: java.lang.InterruptedException at...

status: awaiting feedback

### Feature description Because Groovy now changed their repo https://repo1.maven.org/maven2/org/apache/groovy/groovy-all/ You can not simply change `grade.properties` ``` groovyVersion=4.0.0 ``` It will result in: ``` > Could not resolve all files...

type: major

### Expected Behavior Domain classes: ``` abstract class Contract implements Signable, Fileable, IdempotentResponse { Long loanId Integer installmentsNumber } ``` ``` class Ccb extends Contract { Long number } ```...

info: no example attached

Logback dropped support for grooovy configuration since 1.2.9. Details info could be found in news for Dec 16, 2021 http://logback.qos.ch/news.html There are a lot of mentions of this way for...

See: https://github.com/grails/grails-core/issues/12142#issuecomment-949577410

### Steps to Reproduce 1. Create Grails **4.0.13** application 2. Check `gradle.properties` which should have `gradleWrapperVersion=5.0` based on [Upgrading from Grails 3.3.x](http://docs.grails.org/4.0.x/guide/upgrading.html) ### Expected Behavior Should in `gradle.properties` generate default...

### Expected Behavior It should be possible to register a custom constraint (i.e. a class that implements Constraint) in a default web-app using e.g.: ``` // register constraints with domain...

### Issue description This is a bit esoteric, but regardless... Because the Validateable trait caches the constraints in constraintsMapInternal, the constraints you get when you call Validateable.getConstraintsMap() are not always...

info: no example attached

### Expected Behavior Sometimes I have environment specific yaml entries: ``` environments: production: grails: serverURL: http://example.com ``` then for some reason I might comment an entry out: ``` environments: production:...