Skip to content

Instantly share code, notes, and snippets.

@nipunthathsara
Created October 14, 2022 20:36
Show Gist options
  • Save nipunthathsara/59541b013be734719d51addd05723ed1 to your computer and use it in GitHub Desktop.
Save nipunthathsara/59541b013be734719d51addd05723ed1 to your computer and use it in GitHub Desktop.
Access beans from static context
private static CryptoProperties cryptoProperties;
@Autowired
public CsrUtils(ApplicationContext applicationContext) {
cryptoProperties = applicationContext.getBean(CryptoProperties.class);
}
public static KeyPair generateKeyPair() {
...
String algo = cryptoProperties.getKeyPairAlgorithm();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment