From 50c3d953498521cdd96099735ef87b29d79cb96c Mon Sep 17 00:00:00 2001 From: qibaoguang Date: Tue, 10 Feb 2015 23:50:39 +0800 Subject: [PATCH] Update 26.3.1. Servlets and Filters.md --- IV. Spring Boot features/26.3.1. Servlets and Filters.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/IV. Spring Boot features/26.3.1. Servlets and Filters.md b/IV. Spring Boot features/26.3.1. Servlets and Filters.md index e69de29..7005644 100644 --- a/IV. Spring Boot features/26.3.1. Servlets and Filters.md +++ b/IV. Spring Boot features/26.3.1. Servlets and Filters.md @@ -0,0 +1,5 @@ +### 26.3.1. Servlets和Filters + +当使用内嵌的servlet容器时,你可以直接将servlet和filter注册为Spring的beans。在配置期间,如果你想引用来自application.properties的值,这是非常方便的。默认情况下,如果上下文只包含单一的Servlet,那它将被映射到根路径(/)。在多Servlet beans的情况下,bean的名称将被用作路径的前缀。过滤器会被映射到/*。 + +如果基于约定(convention-based)的映射不够灵活,你可以使用ServletRegistrationBean和FilterRegistrationBean类实现完全的控制。如果你的bean实现了ServletContextInitializer接口,也可以直接注册它们。