mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-05-31 17:22:13 +00:00
Merge branch '6.5.x'
Closes gh-17163
This commit is contained in:
commit
cd27290260
@ -29,30 +29,7 @@ In this case, the `Filter` typically writes the `HttpServletResponse`.
|
|||||||
The power of the `Filter` comes from the `FilterChain` that is passed into it.
|
The power of the `Filter` comes from the `FilterChain` that is passed into it.
|
||||||
|
|
||||||
.`FilterChain` Usage Example
|
.`FilterChain` Usage Example
|
||||||
[tabs]
|
include-code::./FilterChainUsage[tag=dofilter,indent=0]
|
||||||
======
|
|
||||||
Java::
|
|
||||||
+
|
|
||||||
[source,java,role="primary"]
|
|
||||||
----
|
|
||||||
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) {
|
|
||||||
// do something before the rest of the application
|
|
||||||
chain.doFilter(request, response); // invoke the rest of the application
|
|
||||||
// do something after the rest of the application
|
|
||||||
}
|
|
||||||
----
|
|
||||||
|
|
||||||
Kotlin::
|
|
||||||
+
|
|
||||||
[source,kotlin,role="secondary"]
|
|
||||||
----
|
|
||||||
fun doFilter(request: ServletRequest, response: ServletResponse, chain: FilterChain) {
|
|
||||||
// do something before the rest of the application
|
|
||||||
chain.doFilter(request, response) // invoke the rest of the application
|
|
||||||
// do something after the rest of the application
|
|
||||||
}
|
|
||||||
----
|
|
||||||
======
|
|
||||||
|
|
||||||
Since a `Filter` impacts only downstream `Filter` instances and the `Servlet`, the order in which each `Filter` is invoked is extremely important.
|
Since a `Filter` impacts only downstream `Filter` instances and the `Servlet`, the order in which each `Filter` is invoked is extremely important.
|
||||||
|
|
||||||
|
@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2002-2025 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.springframework.security.docs.servlet.servletfiltersreview;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
import jakarta.servlet.Filter;
|
||||||
|
import jakarta.servlet.FilterChain;
|
||||||
|
import jakarta.servlet.ServletException;
|
||||||
|
import jakarta.servlet.ServletRequest;
|
||||||
|
import jakarta.servlet.ServletResponse;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Demos FilterChain Usage.
|
||||||
|
* @author Rob Winch
|
||||||
|
*/
|
||||||
|
public class FilterChainUsage implements Filter {
|
||||||
|
|
||||||
|
// tag::dofilter[]
|
||||||
|
@Override
|
||||||
|
public void doFilter(ServletRequest request, ServletResponse response,
|
||||||
|
FilterChain chain) throws IOException, ServletException {
|
||||||
|
// do something before the rest of the application
|
||||||
|
chain.doFilter(request, response); // invoke the rest of the application
|
||||||
|
// do something after the rest of the application
|
||||||
|
}
|
||||||
|
// end::dofilter[]
|
||||||
|
}
|
@ -0,0 +1,37 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2002-2025 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.springframework.security.kt.docs.servlet.servletfiltersreview
|
||||||
|
|
||||||
|
import jakarta.servlet.*
|
||||||
|
import java.io.IOException
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Demos FilterChain Usage.
|
||||||
|
* @author Rob Winch
|
||||||
|
*/
|
||||||
|
class FilterChainUsage : Filter {
|
||||||
|
|
||||||
|
// tag::dofilter[]
|
||||||
|
@Throws(IOException::class, ServletException::class)
|
||||||
|
override fun doFilter(request: ServletRequest?, response: ServletResponse?, chain: FilterChain) {
|
||||||
|
// do something before the rest of the application
|
||||||
|
chain.doFilter(request, response) // invoke the rest of the application
|
||||||
|
// do something after the rest of the application
|
||||||
|
}
|
||||||
|
// end::dofilter[]
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user