You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Eric Milles (Jira)" <ji...@apache.org> on 2022/07/23 16:29:00 UTC

[jira] [Updated] (GROOVY-10587) Groovy resolves wrong annotation type

     [ https://issues.apache.org/jira/browse/GROOVY-10587?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Eric Milles updated GROOVY-10587:
---------------------------------
    Fix Version/s:     (was: 5.0.0-alpha-1)

> Groovy resolves wrong annotation type
> -------------------------------------
>
>                 Key: GROOVY-10587
>                 URL: https://issues.apache.org/jira/browse/GROOVY-10587
>             Project: Groovy
>          Issue Type: Bug
>    Affects Versions: 3.0.10, 4.0.1
>            Reporter: Cédric Champeau
>            Assignee: Eric Milles
>            Priority: Major
>             Fix For: 4.0.3
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> The issue was initially reported in Micronaut, but it turns out to be a bug in Groovy: [https://github.com/micronaut-projects/micronaut-core/issues/7189]
> The problem is Groovy incorrectly resolving the @Client annotation on the TestClient interface to the inner interface instead of the imported annotation.
> The code below illustrates the bug. It fails to compile.
> {code:java}
> @Grab("io.micronaut:micronaut-http-client-core")
> import io.micronaut.http.client.annotation.Client
> class Application {
>     static interface Api {
>          static interface Client extends Api {}
>     }
>     
>     @Client("/")
>     static interface TestClient extends Api.Client {}
> }
> println Application.TestClient.annotations
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)