Skip to content

Instantly share code, notes, and snippets.

@jangalinski
Last active December 11, 2015 10:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jangalinski/4586531 to your computer and use it in GitHub Desktop.
Save jangalinski/4586531 to your computer and use it in GitHub Desktop.
public MyBean {
@Inject
@Named("myValue")
private String value;
@Produces
@Named("myValue")
private static String initValue() {
return new PropertyReader("file").getValue("parameter");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment