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 After creating a project with version 6M4 and importing it into Intellij IDEA the same project is successfully imported and successfully recognized as a grails project, however...

### Expected Behavior ![Screenshot from 2023-10-17 13-57-32](https://github.com/grails/grails-core/assets/12708027/5fcca403-82ec-46cd-b0e1-712ca451dcc9) ### Actual Behaviour _No response_ ### Steps To Reproduce _No response_ ### Environment Information _No response_ ### Example Application _No response_ ### Version...

I'm trying to deploy my grails application (latest stable version 5.2.4) on Wildfly application server (version 26.1.2). I've dealt with some log-related conflict points, however, now I'm getting the following...

### Expected Behavior That the application.yml file came with the settings below ``` environments: development: dataSource: dbCreate: create-drop url: jdbc:h2:mem:devDb;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE test: dataSource: dbCreate: update url: jdbc:h2:mem:testDb;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE production: dataSource: dbCreate: none...

### Issue description I have a question about the performance of grails running a standalone container. When I run `./gradlew bootRun` my application responds 454413 in one minute. When I...

type: question

### Expected Behavior The `run-script` command should function properly when using Groovy 2.5.7+ and the `grails.codegen.defaultPackage` property is specified. ### Actual Behaviour The application context initializes successfully, but the script...

### Issue description My setup: - OS: Windwos 10 - Java: jdk-17.0.6 - Grails 5.2.4 - Tomcat 10.1.5 (64-bit Windows zip) - Eclipse 2022-09 (4.25.0) / IntelliJ 2022.3.2(both IDE I've...

### Expected Behavior Let's say I have a grails app, that's working. Great. But then let's say I convert that app to a plugin for use in other apps. It...

### Issue description ``` create table user_device_time ( id bigserial primary key, version bigint, device_id bigint, user_id bigint, user_type smallint, time_range int8range ); ``` This is the table I created...

### Expected Behavior Following the documentation on configuring a second datasource, then trying to use within a service. In application.yml have a datasource block, followed by a datasources block with...