Update index.adoc - add missing callout

To fix WARNING: index.adoc: line 988: no callouts refer to list item 1
This commit is contained in:
stonio 2017-04-13 16:38:07 +02:00 committed by Rob Winch
parent 335a01577a
commit dbda7e35a4
1 changed files with 1 additions and 1 deletions

View File

@ -924,7 +924,7 @@ We can configure multiple HttpSecurity instances just as we can have multiple `<
----
@EnableWebSecurity
public class MultiHttpSecurityConfig {
@Bean
@Bean <1>
public UserDetailsService userDetailsService() throws Exception {
InMemoryUserDetailsManager manager = new InMemoryUserDetailsManager();
manager.createUser(User.withUsername("user").password("password").roles("USER").build());