Преглед на файлове

Corrected Reference to HttpServletRequest#authenticate

Xi Minghui преди 1 година
родител
ревизия
e39b39dada
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      docs/modules/ROOT/pages/servlet/integrations/servlet-api.adoc

+ 2 - 2
docs/modules/ROOT/pages/servlet/integrations/servlet-api.adoc

@@ -90,8 +90,8 @@ The following section describes the Servlet 3 methods with which Spring Security
 
 
 [[servletapi-authenticate]]
-=== HttpServletRequest.authenticate(HttpServletRequest,HttpServletResponse)
-You can use the https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#authenticate%28javax.servlet.http.HttpServletResponse%29[`HttpServletRequest.authenticate(HttpServletRequest,HttpServletResponse)`] method to ensure that a user is authenticated.
+=== HttpServletRequest.authenticate(HttpServletResponse)
+You can use the https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#authenticate%28javax.servlet.http.HttpServletResponse%29[`HttpServletRequest.authenticate(HttpServletResponse)`] method to ensure that a user is authenticated.
 If they are not authenticated, the configured `AuthenticationEntryPoint` is used to request the user to authenticate (redirect to the login page).