Created
March 29, 2016 09:03
-
-
Save dumbNickname/dfad0e623f2d4bc571fb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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