博客
关于我
Spring Boot - Add a Servlet to an Application
阅读量:300 次
发布时间:2019-03-03

本文共 5101 字,大约阅读时间需要 17 分钟。

文章目录

准备

新建 Spring Starter Project

在这里插入图片描述

编辑 pom.xml 文件,引入 spring-boot-starter-web 等依赖:

4.0.0
org.springframework.boot
spring-boot-starter-parent
2.3.3.RELEASE
com.mk
spring-boot-servlet
1.0.0
spring-boot-servlet
1.8
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-devtools
runtime
true
org.springframework.boot
spring-boot-configuration-processor
true
org.projectlombok
lombok
true
org.springframework.boot
spring-boot-maven-plugin
org.springframework.boot
spring-boot-configuration-processor
org.projectlombok
lombok

新建一个 Servlet 类:

package com.mk.servlet;import java.io.IOException;import java.io.PrintWriter;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;public class HelloServlet extends HttpServlet {       private static final long serialVersionUID = 1L;        public HelloServlet() {           System.out.println("HelloServlet.HelloServlet()");    }    @Override    public void init() throws ServletException {           System.out.println("HelloServlet.init()");    }        @Override    protected void doGet(HttpServletRequest request, HttpServletResponse response)            throws ServletException, IOException {           System.out.println("HelloServlet.doGet()");                PrintWriter writer = response.getWriter();        writer.write("Hello, " + request.getRemoteAddr());        writer.flush();        writer.close();    }        @Override    public void destroy() {           System.out.println("HelloServlet.destroy()");    }}

新建一个 Servlet 配置类:

package com.mk.configuration;import org.springframework.boot.web.servlet.ServletComponentScan;import org.springframework.context.annotation.Configuration;@Configurationpublic class ServletComponentConfiguration {   }

启动类:

package com.mk;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplicationpublic class SpringBootServletApplication {   	public static void main(String[] args) {   		SpringApplication.run(SpringBootServletApplication.class, args);	}}

通过使用 Spring Bean 添加 Servlet

编辑 ServletComponentConfiguration 配置类,注册 Servlet 组件(第 16 ~ 24 行):

package com.mk.configuration;import java.util.Arrays;import javax.servlet.Servlet;import org.springframework.boot.web.servlet.ServletRegistrationBean;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import com.mk.servlet.HelloServlet;@Configurationpublic class ServletComponentConfiguration {       @Bean    public ServletRegistrationBean
servletRegistration() { ServletRegistrationBean
registration = new ServletRegistrationBean<>(); registration.setServlet(new HelloServlet()); registration.setUrlMappings(Arrays.asList("/hello")); return registration; }}

启动应用,观察控制台输出:

HelloServlet.HelloServlet()

说明 Spring Boot 已经将 HelloServlet 添加到容器中。

访问 ,看到返回预期的内容,表示 Servlet 组件添加成功:

在这里插入图片描述

注意:第一次访问 的过程中,HelloServlet.init() 方法会被调用,此后不再被调用。

通过使用类路劲扫描添加 Servlet

编辑 HelloServlet 类:

  • 使用 @WebServlet 注解,设置 urlPatterns 属性指定 URL 映射路径(第 12 行)
package com.mk.servlet;import java.io.IOException;import java.io.PrintWriter;import javax.servlet.ServletException;import javax.servlet.annotation.WebServlet;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;@WebServlet(urlPatterns = "/hello")public class HelloServlet extends HttpServlet {       // ...略,保持不变}

编辑 ServletComponentConfiguration 配置类:

  • 删除第 10 ~ 18 行
  • 使用 @ServletComponentScan 注解,设置 basePackages 属性指定 Servlet 组件的扫描路径(第 7 行)
package com.mk.configuration;import org.springframework.boot.web.servlet.ServletComponentScan;import org.springframework.context.annotation.Configuration;@Configuration@ServletComponentScan(basePackages = {   "com.mk.servlet"})public class ServletComponentConfiguration {   //    @Bean//    public ServletRegistrationBean
servletRegistration() { // ServletRegistrationBean
registration = new ServletRegistrationBean<>();// // registration.setServlet(new HelloServlet());// registration.setUrlMappings(Arrays.asList("/hello"));// // return registration;// }}

启动应用,访问 ,看到返回预期的内容,表示 Servlet 组件添加成功。

参考

转载地址:http://jhyq.baihongyu.com/

你可能感兴趣的文章
volatile关键字和AtomicInteger
查看>>
redisTemplate.opsForHash()
查看>>
maven生命周期
查看>>
方法的绑定机制-静态绑定和动态绑定
查看>>
服务调用
查看>>
GateWay限流
查看>>
setnx
查看>>
Java取绝对值
查看>>
线程的start()方法
查看>>
for循环读取数组遇问题:dexError: invalid index to scalar variable.
查看>>
编写测试用例的实用小技巧
查看>>
c语言贪吃蛇控制台版
查看>>
Windows10 下springboot应用无法被外部网络访问
查看>>
报错:在IDEA中springboot项目操作数据库,配置文件驱动com.mysql.cj.jdbc.Driver标红
查看>>
redis报错(error) NOAUTH Authentication required.解决办法
查看>>
对象和封装
查看>>
【树形dp】P1273 有线电视网
查看>>
【分层图最短路】P4568 [JLOI2011]飞行路线
查看>>
【最短路】P4408 [NOI2003]逃学的小孩
查看>>
2020C证(安全员)模拟考试题及C证(安全员)模拟考试系统
查看>>