forked from micronaut-projects/micronaut-core
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve issue with inner configurations and qualifiers. Fixes microna…
- Loading branch information
1 parent
e1c4617
commit fa6fdfb
Showing
4 changed files
with
34 additions
and
5 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
inject-java/src/test/groovy/io/micronaut/aop/named/Config.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package io.micronaut.aop.named; | ||
|
||
import io.micronaut.context.annotation.ConfigurationProperties; | ||
|
||
@ConfigurationProperties("config") | ||
public class Config { | ||
|
||
public Config(Inner inner) { | ||
|
||
} | ||
|
||
@ConfigurationProperties("inner") | ||
public static class Inner { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters