zyro23 opened a new issue, #14547:
URL: https://github.com/apache/grails-core/issues/14547
### Task List
- [x] Steps to reproduce provided
- [x] Stacktrace (if present) provided
- [x] Example that reproduces the problem uploaded to Github
- [x] Full description of the issue provided (see below)
### Steps to Reproduce
1. create a gorm data service like this:
```groovy
@Service(Dummy)
interface DummyDataService {
List<Dummy> findAllByIdInList(List<Long> ids)
}
```
2. try to compile (e.g. `gradle(w) classes`)
### Expected Behaviour
data service should compile
### Actual Behaviour
```
Cannot implement finder for non-existent property [id] of class [myapp.Dummy]
@ line 9, column 2.
List<Dummy> findAllByIdInList(List<Long> ids)
^
1 error
:compileGroovy FAILED
```
### Environment Information
- **Operating System**: win x64
- **GORM Version:** 6.1.10
- **Grails Version (if using Grails):** 3.3.8
- **JDK Version:** oracle 8u151
### Example Application
- sample app will be referenced in a minute
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]