소스 검색

docs, change name of class in multiple httpSecurity

kostya05983 6 년 전
부모
커밋
646f257e01
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/manual/src/docs/asciidoc/_includes/servlet/preface/java-configuration.adoc

+ 1 - 1
docs/manual/src/docs/asciidoc/_includes/servlet/preface/java-configuration.adoc

@@ -1081,7 +1081,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]