Danny Casady

Results 3 issues of Danny Casady

The detailed functionality (especially in edge cases dealing with inheritance) of unique constraints has changed back and forth over the last couple of years. As of 6.1.11, this behavior has...

Given a simple service class annotated with [`@CurrentTenant`](http://gorm.grails.org/6.1.x/api/grails/gorm/multitenancy/CurrentTenant.html): ```groovy @CurrentTenant @Transactional(readOnly = true) class MultiTenantCachingService { @Cacheable('test') def serviceMethod() { } } ``` Calling `serviceMethod()` throws the following exception: ```...

The Grails default UTF-8 `characterEncodingFilter` no longer encodes special characters correctly in an app with the Spring Security CAS plugin. I believe this is due to the `SingleSignOutFilter`'s registration order...