SpringBoot----嵌入式Servelt容器
Posted 大忽悠爱忽悠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot----嵌入式Servelt容器相关的知识,希望对你有一定的参考价值。
嵌入式Servelt容器
SpringBoot默认使用tomcat作为嵌入式的Servlet容器
定制和修改Servelt容器的相关配置
1.修改和Server有关的配置,去找对应绑定的类(ServerProperties)
通用的Servlet设置和tomcat相关设置
编写一个嵌入式的容器定制器(EmbeddedServletContainerCustomizer),来修改Servlet容器的相关配置
EmbeddedServletContainerCustomizer不存在,SpringBoot2.0 以上,使用“WebServerFactoryCustomizer”接口替换“EmbeddedServletContainerCustomizer”组件完成对嵌入式Servlet容器的配置”。
//一定要将返回值放入容器中才会生效
@Bean
public WebServerFactoryCustomizer webServerFactoryCustomizer(){
return new WebServerFactoryCustomizer<ConfigurableServletWebServerFactory>() {
//定制嵌入式的Servlet容器相关的规则
@Override
public void customize(ConfigurableServletWebServerFactory factory) {
factory.setPort(8896);
}
};
}
Spring Boot2.0以上版本WebServerFactoryCustomizer进行WebServer的个性化配置
Spring Boot2.0以上版本WebServerFactoryCustomizer进行WebServer的个性化配置
在springBoot中会有非常多的xxxCustomizer帮助我们进行定制配置
在springBoot中会有非常多的xxxConfigure帮助我们进扩展配置
注册Servlet的三大组件
注册Servlet
创建一个MyServlet类:`
public class MyServlet extends HttpServlet
{
//处理get请求
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
resp.getWriter().write("Hello MyServlet");
}
//处理psot请求
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
doPost(req,resp);
}
}
在MyServletConfig配置类中注册该Servlet:
//注册三大组件
//注册Servlet到容器中
@Bean
public ServletRegistrationBean myServlet()
{
ServletRegistrationBean servletRegistrationBean =
//第一个参数:注册哪一个Servlet
//第二个参数:这个Servlet映射哪些路径
new ServletRegistrationBean(new MyServlet(),"/myServlet");
return servletRegistrationBean;
}
注册Filter
创建一个MyFilter类:`
public class MyFilter implements Filter {
@Override
public void init(FilterConfig filterConfig) throws ServletException {
System.out.println("初始化中....");
}
@Override
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
System.out.println("放行");
filterChain.doFilter(servletRequest,servletResponse);
}
@Override
public void destroy() {
System.out.println("销毁中....");
}
}
在MyServletConfig配置类中注册该Filter:
//注册Filter到容器中
@Bean
public FilterRegistrationBean myFilter()
{
FilterRegistrationBean registrationBean=new FilterRegistrationBean();
registrationBean.setFilter(new MyFilter());
//拦截的路径
registrationBean.setUrlPatterns(Arrays.asList("/hello","/myServlet"));
return registrationBean;
}
注册Listener
创建一个MyListener类:
public class MyListener implements ServletContextListener
{
@Override
public void contextInitialized(ServletContextEvent sce) {
System.out.println("web应用启动中.....");
}
@Override
public void contextDestroyed(ServletContextEvent sce) {
System.out.println("当前web项目销毁");
}
}
在MyServletConfig配置类中注册该Listener:
//注册Listener到容器中
@Bean
public ServletListenerRegistrationBean myListener()
{
ServletListenerRegistrationBean<MyListener> listener = new ServletListenerRegistrationBean<>(new MyListener());
return listener;
}
MyServlet完整配置类
@Configuration
public class MyServletConfig
{
//注册三大组件
//注册Servlet到容器中
@Bean
public ServletRegistrationBean myServlet()
{
ServletRegistrationBean servletRegistrationBean =
//第一个参数:注册哪一个Servlet
//第二个参数:这个Servlet映射哪些路径
new ServletRegistrationBean(new MyServlet(),"/myServlet");
return servletRegistrationBean;
}
//注册Filter到容器中
@Bean
public FilterRegistrationBean myFilter()
{
FilterRegistrationBean registrationBean=new FilterRegistrationBean();
registrationBean.setFilter(new MyFilter());
registrationBean.setUrlPatterns(Arrays.asList("/hello","/myServlet"));
return registrationBean;
}
//注册Listener到容器中
@Bean
public ServletListenerRegistrationBean myListener()
{
ServletListenerRegistrationBean<MyListener> listener = new ServletListenerRegistrationBean<>(new MyListener());
return listener;
}
//定制嵌入式的Servlet容器相关的规则
@Bean
public WebServerFactoryCustomizer webServerFactoryCustomizer(){
return new WebServerFactoryCustomizer<ConfigurableServletWebServerFactory>() {
//定制嵌入式的Servlet容器相关的规则
@Override
public void customize(ConfigurableServletWebServerFactory factory) {
factory.setPort(8896);
}
};
}
}
SpringBoot帮我们自动启动SpirngMVC的时候,自动的注册SpringMVC的前端控制器
我们可以通过server.servletPath来修改SpringMVC前端控制器默认拦截的请求路径
切换其他嵌入式Servlet容器
默认支持tomcat(默认使用),jetty和undertow
如何切换
SpringBoot默认使用的是Tomcat作为嵌入式的Servlet容器:引入web模块默认就是使用嵌入式的Tomcat作为Servlet容器
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring‐boot‐starter‐web</artifactId>
</dependency>
如果想切换为其他类型的嵌入式Servlet容器,则需要先将嵌入式的Tomcat容器排除,再添加相应Servlet容器的依赖,比如想切换为Jetty
<!‐‐ 引入web模块 ‐‐>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring‐boot‐starter‐web</artifactId>
<exclusions>
<exclusion>
<artifactId>spring‐boot‐starter‐tomcat</artifactId>
<groupId>org.springframework.boot</groupId>
</exclusion>
</exclusions>
</dependency>
<!‐‐引入Jetty的依赖‐‐>
<dependency>
<artifactId>spring‐boot‐starter‐jetty</artifactId>
<groupId>org.springframework.boot</groupId>
</dependency>
切换为Undertow容器:
<!‐‐ 引入web模块 ‐‐>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring‐boot‐starter‐web</artifactId>
<exclusions>
<exclusion>
<artifactId>spring‐boot‐starter‐tomcat</artifactId>
<groupId>org.springframework.boot</groupId>
</exclusion>
</exclusions>
</dependency>
<!‐‐引入Jetty的依赖‐‐>
<dependency>
<artifactId>spring‐boot‐starter‐undertow</artifactId>
<groupId>org.springframework.boot</groupId>
</dependency>
嵌入式Servlet自动配置原理
如果我们在配置文件中修改Servlet的相关属性,与该配置文件绑定的ServerProperties也同样是一个定制器,因此后置处理器会也会调用,然后完成属性赋值
SpringBoot在容器中放了一个嵌入式容器工厂组件----》嵌入式容器工厂组件创建对象—》后置处理器工作—》在嵌入式容器工厂组件属性没有被赋值前,后置处理器获取所有定制器,获取相关值,赋值对嵌入式容器工厂的对应属性
SpringBoot——嵌入式Servlet容器自动配置原理以及启动原理
嵌入式Servlet容器工厂启动原理
以上是关于SpringBoot----嵌入式Servelt容器的主要内容,如果未能解决你的问题,请参考以下文章