真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBoot整合三大組建(Servlet、Liste

更多資源和教程請關注公眾號:非科班的科班。
如果覺得我寫的還可以請給個贊,謝謝大家,你的鼓勵是我創(chuàng)作的動力

創(chuàng)新互聯(lián)建站專注于豐城企業(yè)網(wǎng)站建設,成都響應式網(wǎng)站建設公司,電子商務商城網(wǎng)站建設。豐城網(wǎng)站建設公司,為豐城等地區(qū)提供建站服務。全流程定制網(wǎng)站,專業(yè)設計,全程項目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務

3.SpringBoot整合Servlet

3.1.方式一

步驟:

  • 寫一個類MyFirstServlet繼承HttpServlet,并重寫doGet方法。
  • 在類的上面用@WebServlet標識Servlet并指明name和urlPatterns。
  • 在標識有@SpringBootApplication的主類上加上@ServletComponentScan。

FirstServlet.java

package com.example.servlet.myservlet;

import javax.servlet.http.HttpServlet;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 *SpringBoot整合Servlet方式一
 *@WebServlet(name="MyFirstServlet",urlPatterns="/myFirst")相當于如下:
 *
 *
 * MyFirstServlet
 * ah.szxy.servlet.FirstServlet
 *
 *
 * MyFirstServlet
 * /first
 *
 *
 */

@WebServlet(name="MyFirstServlet",urlPatterns="/myFirst")
public class FirstServlet extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        System.out.println("MyFirstServlet init............");
    }
}

ServletApplication.java

package com.example.servlet;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;

@SpringBootApplication
@ServletComponentScan //在springBoot啟動時會掃描@WebServlet,并將該類實例化
public class ServletApplication {

   public static void main(String[] args) {
      SpringApplication.run(ServletApplication.class, args);
   }

}

然后啟動項目
SpringBoot整合三大組建(Servlet、Liste

最后在瀏覽器輸入localhost:8080/myFirstServlet,頁面顯示空白,在控制臺打印MyFirstServlet init............

3.2.方式二

步驟:

  • 創(chuàng)建一個類SecondServlet繼承HttpServlet,并重寫doGet方法。
  • 在@SpringBootApplication標識的主類中加@Bean的一個方法。
    SecondServlet.java
package com.example.servlet.myservlet;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

/**
 * 整合Servlet的第二種方式
 */
public class SecondServlet extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        System.out.println("MySecondServlet init..........");
    }
}

ServletApplication.java

package com.example.servlet;

import com.example.servlet.myservlet.SecondServlet;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
//@ServletComponentScan //在springBoot啟動時會掃描@WebServlet,并將該類實例化
public class ServletApplication {

   public static void main(String[] args) {
      SpringApplication.run(ServletApplication.class, args);
   }

  /**
 * 整合Servlet的第二種方式,創(chuàng)建ServletRegistrationBean并添加路徑
 * @return
 */
@Bean
public ServletRegistrationBean getServletRegistrationBean(){
   ServletRegistrationBean bean = new ServletRegistrationBean(new SecondServlet());
   bean.addUrlMappings("/mySecond");
   return bean;
}

然后啟動項目,在瀏覽器中訪問localhost:8080/mySecondServlet,頁面也是空白,在控制臺就會打印MySecondServlet init..........
SpringBoot整合三大組建(Servlet、Liste
項目,結構如圖所示
SpringBoot整合三大組建(Servlet、Liste

結論:

  • 上面的兩種方式推薦使用第一種基于注解的整合。
  • 雖然現(xiàn)在幾乎用不到servlet了,但是學習SpringBoot整合servlet有助于學習的深入了解,更好的理解框架。

4.SpringBoot整合Filter

4.1.方式一

步驟:

  • 創(chuàng)建一個MyFirstFilter類實現(xiàn)Filter接口,并在類上面標注@WebFilter。
  • 在@SpringBootApplication的主類上加上@ServletComponentScan注解。

MyFirstFilter.java

package com.example.servlet.myfilter;

import javax.servlet.*;
import javax.servlet.annotation.WebFilter;
import java.io.IOException;

/**
 * 基于@WebFilter注解整合Filter方式一
 */
@WebFilter(filterName = "MyFirstFilter",urlPatterns = "/myFirst")
public class MyFirstFilter implements Filter {
    @Override
    public void init(FilterConfig filterConfig) throws ServletException {

    }

    @Override
    public void doFilter(ServletRequest arg0, ServletResponse arg1, FilterChain arg2) throws IOException, ServletException {
        System.out.println("進入Filter中了.....");
        arg2.doFilter(arg0,arg1);
        System.out.println("離開Filter了.......");
    }

    @Override
    public void destroy() {

    }
}

ServletApplication.java

package com.example.servlet;

import com.example.servlet.myservlet.SecondServlet;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
@ServletComponentScan //在springBoot啟動時會掃描@WebServlet,并將該類實例化
public class ServletApplication {

   public static void main(String[] args) {
      SpringApplication.run(ServletApplication.class, args);
   }

   /**
    * 整合Servlet的第二種方式,創(chuàng)建ServletRegistrationBean并添加路徑
    * @return
    */
   @Bean
   public ServletRegistrationBean getServletRegistrationBean(){
      ServletRegistrationBean bean = new ServletRegistrationBean(new SecondServlet());
      bean.addUrlMappings("/mySecond");
      return bean;
   }
}

4.2.方式二

步驟:

  • 創(chuàng)建一個類MySecondFilter實現(xiàn)Filter接口,重寫方法。
  • 在@SpringBootApplication標識的主類中加@Bean的一個方法,將MySecondFilter對象注入容器中。

MySecondFilter.java

package com.example.servlet.myfilter;

import javax.servlet.*;
import java.io.IOException;

/**
 * 整合Filter的第二種方式
 */
public class MySecondFilter implements Filter {
    @Override
    public void init(FilterConfig filterConfig) throws ServletException {

    }

    @Override
    public void doFilter(ServletRequest arg0, ServletResponse arg1, FilterChain arg2) throws IOException, ServletException {
        System.out.println("進入MySecondFilter了......");
        arg2.doFilter(arg0, arg1);
        System.out.println("離開MySecondFilter了......");
    }

    @Override
    public void destroy() {

    }
}

ServletApplication.java

package com.example.servlet;

import com.example.servlet.myfilter.MySecondFilter;
import com.example.servlet.myservlet.SecondServlet;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
//@ServletComponentScan //在springBoot啟動時會掃描@WebServlet,并將該類實例化
public class ServletApplication {

   public static void main(String[] args) {
      SpringApplication.run(ServletApplication.class, args);
   }

   /**
    * 整合Filter的第二種方式
    * 注冊Filter
    */
   @Bean
   public FilterRegistrationBean getFilterRegistrationBean() {
      FilterRegistrationBean bean = new FilterRegistrationBean(new MySecondFilter());
      // bean.addUrlPatterns(new String[]{"*.do","*.jsp"});//攔截多個時
      bean.addUrlPatterns("/mySecond");
      return bean;
   }
}

然后在瀏覽器訪問localhost:8080/mySecond,就可以看到控制臺打印如下
SpringBoot整合三大組建(Servlet、Liste

5.SpringBoot整合Listener

5.1.方式一

步驟:

  • 創(chuàng)建一個類MyFirstListener實現(xiàn)ServletContextListener接口,重寫方法
  • 在該類上加上@WebListener注解
package com.example.servlet.mylistener;

import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.servlet.annotation.WebListener;

/**
 * springBoot 整合Listener第一種方式
 * 創(chuàng)建一個Servlet上下文的監(jiān)聽器
 * @WebListener 自動注冊,相當于在web.xml中添加如下代碼
 *
 *
 * ah.szxy.listener.FirstListener
 *
 */
@WebListener
public class MyFirstListener implements ServletContextListener {

    @Override
    public void contextDestroyed(ServletContextEvent arg0) {
        // TODO Auto-generated method stub
        System.out.println("MyFirstListener執(zhí)行銷毀了。。。");
    }

    @Override
    public void contextInitialized(ServletContextEvent arg0) {
        // TODO Auto-generated method stub
        System.out.println("MyFirstListener執(zhí)行初始化了。。。");
    }
}

執(zhí)行項目會打印如下,因為用了@ServletComponentScan注解,在項目啟動的時候就會掃描包中是否含有servlet,若有就初始化。由于FirstServlet是基于注解初始化的,所以在項目啟動的時候,就會執(zhí)行初始化servlet,被Listener監(jiān)聽到
SpringBoot整合三大組建(Servlet、Liste

5.1.方式二

步驟:

  • 創(chuàng)建一個類MySecondListener實現(xiàn)ServletContextListener接口,重寫方法。
  • 在@SpringBootApplication標識的主類中加@Bean的一個方法,將MySecondListener對象注入容器中。
package com.example.servlet.mylistener;

import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;

/**
 * 整合Listener的第二種方式
 */
public class MySecondListener implements ServletContextListener {

    @Override
    public void contextDestroyed(ServletContextEvent arg0) {
        // TODO Auto-generated method stub
        System.out.println("MySecondListener執(zhí)行銷毀了。。。");
    }

    @Override
    public void contextInitialized(ServletContextEvent arg0) {
        // TODO Auto-generated method stub
        System.out.println("MySecondListener執(zhí)行初始化了。。。");
    }

}
package com.example.servlet;

import com.example.servlet.myfilter.MySecondFilter;
import com.example.servlet.mylistener.MySecondListener;
import com.example.servlet.myservlet.SecondServlet;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.boot.web.servlet.ServletListenerRegistrationBean;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
@ServletComponentScan //在springBoot啟動時會掃描@WebServlet,并將該類實例化
public class ServletApplication {

   public static void main(String[] args) {
      SpringApplication.run(ServletApplication.class, args);
   }

   /**
    * 注冊listener
    */
   @Bean
   public ServletListenerRegistrationBean getServletListenerRegistrationBean() {
      ServletListenerRegistrationBean bean = new ServletListenerRegistrationBean(
            new MySecondListener());
      return bean;
   }

}

執(zhí)行項目,在控制臺可以看到輸出如下,兩個Servlet監(jiān)聽器都執(zhí)行了
SpringBoot整合三大組建(Servlet、Liste
總的項目目錄包結構如下:
SpringBoot整合三大組建(Servlet、Liste

更多資源和教程請關注公眾號:非科班的科班。
如果覺得我寫的還可以請給個贊,謝謝大家,你的鼓勵是我創(chuàng)作的動力

最后分享一波java的資源,資源包括java從入門到開發(fā)的全套視頻,以及java的26個項目,資源比較大,大小大概是290g左右,鏈接容易失效,獲取的方式是關注公眾號:非科班的科班,讓后回復:java項目即可獲得,祝大家學習愉快


標題名稱:SpringBoot整合三大組建(Servlet、Liste
轉載源于:http://weahome.cn/article/jgdpop.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部