Skip to content

Instantly share code, notes, and snippets.

@sabesansathananthan
Last active August 8, 2019 17:20
Show Gist options
  • Save sabesansathananthan/4fb32df7e830685ee226e03970b165d5 to your computer and use it in GitHub Desktop.
Save sabesansathananthan/4fb32df7e830685ee226e03970b165d5 to your computer and use it in GitHub Desktop.
Client Application
@Configuration
class KerberosConfig {
@Value("${app.user-principal}")
private String principal;
@Value("${app.keytab-location}")
private String keytabLocation;
@Bean
public RestTemplate restTemplate() {
return new KerberosRestTemplate(keytabLocation, principal);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment