Skip to content

Instantly share code, notes, and snippets.

@dumbNickname
Created March 29, 2016 09:03
Show Gist options
  • Save dumbNickname/dfad0e623f2d4bc571fb to your computer and use it in GitHub Desktop.
Save dumbNickname/dfad0e623f2d4bc571fb to your computer and use it in GitHub Desktop.
@Value("${memory.auth.active}")
private boolean inMemoryActive;
@Value("${memory.auth.username}")
private String inMemoryUsername;
@Value("${memory.auth.password}")
private String inMemoryPassword;
// Dirty solution to provide in memory authentication
@Autowired
public void configureGlobal(final AuthenticationManagerBuilder auth) throws Exception {
if (inMemoryActive) {
auth.inMemoryAuthentication()
.withUser(inMemoryUsername)
.password(inMemoryPassword)
.authorities(PermissionsGoHere.PickOne); // if you need permissions
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment