miguel bautista
miguel bautista
Environment: Grails 5 GORM 7.1.0 Java 8 Problem: I'm trying to run this simple code: ``` collection.aggregate( Arrays.asList( Aggregates.match(Filters.eq("categories", "Bakery")), Aggregates.group('$stars', Accumulators.sum("count", 1)) ) ).forEach(doc -> System.out.println(doc.toJson())); ``` the system...
please see issue #268. same error with this version If I do this the war is deployed successfully: implementation('org.grails.plugins:database-migration:4.1.0') { exclude module: 'spring-boot-cli' }
Tomcat throws an Exception when using new version NOTE: If I use version 3.1.0 the app is deployed correctly Exception: SEVERE [main] org.apache.catalina.startup.HostConfig.deployWAR Error deploying web application archive [E:\apache-tomcat-9.0.33\webapps\prueba.war] java.lang.IllegalStateException:...
Why @Caching is not available?