Fix docs typo WebSecurityConfigurationAdapter->WebSecurityConfigurerAdapter

Fixes gh-7026
This commit is contained in:
kostya05983
2019-08-04 16:27:02 +07:00
committed by Rob Winch
parent 83b7d7d461
commit 7542d59364

View File

@@ -1055,7 +1055,7 @@ public BCryptPasswordEncoder passwordEncoder() {
== Multiple HttpSecurity
We can configure multiple HttpSecurity instances just as we can have multiple `<http>` blocks.
The key is to extend the `WebSecurityConfigurationAdapter` multiple times.
The key is to extend the `WebSecurityConfigurerAdapter` multiple times.
For example, the following is an example of having a different configuration for URL's that start with `/api/`.
[source,java]