SpringBoot中如何集成Servlet呢?

SpringBoot中如何集成Servlet呢?

下文笔者将讲述两种SpringBoot集成Servlet的方法,如下所示:

实现思路:
方式1:
使用全注解的方式开发
1.1 在启动类上面加上注解 @ServletComponentScan
1.2 编写Servlet程序,并在Servlet程序上加上注解 @WebServlet(name=”testServlet1″,urlPatterns = “/test”)
方式2:
直接编写一个@Configuration类
将Servlet程序使用ServletRegistrationBean注册到Springboot中
例1:
 

//启动类上加入Servlet扫描注解
@SpringBootApplication
@ServletComponentScan
public class SpringbootservletApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootservletApplication.class, args);
}
}

//编写Servlet类
@WebServlet(name="testServlet1",urlPatterns = "/test")
public class TestServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
System.out.println("java265.com 提醒你 -servlet已经开始运行");
}
}
-----采用以上方式编写代码后,我们可以使用
http://localhost:8080/test访问servlet了
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » SpringBoot中如何集成Servlet呢?