Skip to content

Instantly share code, notes, and snippets.

@recursivecodes
Created June 12, 2019 17:10
Show Gist options
  • Select an option

  • Save recursivecodes/8ce23948062e54fb692d62e426dd90b2 to your computer and use it in GitHub Desktop.

Select an option

Save recursivecodes/8ce23948062e54fb692d62e426dd90b2 to your computer and use it in GitHub Desktop.
@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