Created
June 12, 2019 17:10
-
-
Save recursivecodes/8ce23948062e54fb692d62e426dd90b2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| @Controller("/metadata") | |
| public class MetadataController { | |
| String testConfigValue = null; | |
| @Inject | |
| MetadataController( @Property(name="test") String test ){ | |
| this.testConfigValue = test; | |
| } | |
| @Get("/") | |
| public HttpStatus index() { | |
| return HttpStatus.OK; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment