轉-spring boot web相關配置

spring boot web相關配置

     spring boot集成了servlet容器,當咱們在pom文件中增長spring-boot-starter-web的maven依賴時,不作任何web相關的配置便能提供web服務,這還得歸於spring boot 自動配置的功能(由於加了EnableAutoConfiguration的註解),幫咱們建立了一堆默認的配置,之前在web.xml中配置,如今均可以經過spring bean的方式進行配置,由spring來進行生命週期的管理,大多數狀況下,咱們須要重載這些配置(例如修改服務的啓動端口,contextpath,filter,listener,servlet,session超時時間等)html

      1. servlet配置java

     當應用只有默認的servlet(即DispatcherServlet)時,映射的url爲/,存在其餘的servlet時,映射的路徑爲servlet的註冊的beanname(可經過@Component註解修改),建立方式以下:git

 

[java]  view plain  copy
 
  1. @Component("myServlet")  
  2. public class MyServlet implements Servlet{  
  3.     /** 
  4.      *  
  5.      * @see javax.servlet.Servlet#destroy() 
  6.      */  
  7.     @Override  
  8.     public void destroy() {  
  9.         System.out.println("destroy...");  
  10.     }  
  11.     /** 
  12.      * @return 
  13.      * @see javax.servlet.Servlet#getServletConfig() 
  14.      */  
  15.     @Override  
  16.     public ServletConfig getServletConfig() {  
  17.         return null;  
  18.     }  
  19.     /** 
  20.      * @return 
  21.      * @see javax.servlet.Servlet#getServletInfo() 
  22.      */  
  23.     @Override  
  24.     public String getServletInfo() {  
  25.         return null;  
  26.     }  
  27.     /** 
  28.      * @param arg0 
  29.      * @throws ServletException 
  30.      * @see javax.servlet.Servlet#init(javax.servlet.ServletConfig) 
  31.      */  
  32.     @Override  
  33.     public void init(ServletConfig arg0) throws ServletException {  
  34.         System.out.println("servlet init...");  
  35.     }  
  36.     /** 
  37.      * @param arg0 
  38.      * @param arg1 
  39.      * @throws ServletException 
  40.      * @throws IOException 
  41.      * @see javax.servlet.Servlet#service(javax.servlet.ServletRequest, javax.servlet.ServletResponse) 
  42.      */  
  43.     @Override  
  44.     public void service(ServletRequest arg0, ServletResponse arg1) throws ServletException,  
  45.                                                                     IOException {  
  46.         System.out.println("service...");  
  47.     }  
   

 

    2. filter配置github

    filter配置的映射是/*,建立方式以下:web

 

[java]  view plain  copy
 
  1. @Component("myFilter")  
  2. public class MyFilter implements Filter{  
  3.     /** 
  4.      *  
  5.      * @see javax.servlet.Filter#destroy() 
  6.      */  
  7.     @Override  
  8.     public void destroy() {  
  9.         System.out.println("destroy...");  
  10.     }  
  11.     /** 
  12.      * @param arg0 
  13.      * @param arg1 
  14.      * @param arg2 
  15.      * @throws IOException 
  16.      * @throws ServletException 
  17.      * @see javax.servlet.Filter#doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain) 
  18.      */  
  19.     @Override  
  20.     public void doFilter(ServletRequest arg0, ServletResponse arg1, FilterChain arg2)  
  21.                                                                                         throws IOException,  
  22.                                                                     ServletException {  
  23.         System.out.println("doFilter...");  
  24.         arg2.doFilter(arg0, arg1);  
  25.     }  
  26.     /** 
  27.      * @param arg0 
  28.      * @throws ServletException 
  29.      * @see javax.servlet.Filter#init(javax.servlet.FilterConfig) 
  30.      */  
  31.     @Override  
  32.     public void init(FilterConfig arg0) throws ServletException {  
  33.         System.out.println("filter init...");  
  34.     }  
  35.        
  36. }<span style="font-family: Arial, Helvetica, FreeSans, sans-serif; font-size: 13.3333330154419px; line-height: 17.3333339691162px; background-color: transparent;">   </span>  

 

    

    3. listener配置spring

 

[java]  view plain  copy
 
  1. @Component("myListener")  
  2. public class MyListener implements ServletContextListener{  
  3.     /** 
  4.      * @param arg0 
  5.      * @see javax.servlet.ServletContextListener#contextDestroyed(javax.servlet.ServletContextEvent) 
  6.      */  
  7.     @Override  
  8.     public void contextDestroyed(ServletContextEvent arg0) {  
  9.         System.out.println("contextDestroyed...");  
  10.     }  
  11.     /** 
  12.      * @param arg0 
  13.      * @see javax.servlet.ServletContextListener#contextInitialized(javax.servlet.ServletContextEvent) 
  14.      */  
  15.     @Override  
  16.     public void contextInitialized(ServletContextEvent arg0) {  
  17.         System.out.println("listener contextInitialized...");  
  18.     }  
  19.        
  20. }  
若是以爲控制力度不夠靈活(例如你想修改filter的映射),spring boot還提供了  ServletRegistrationBean,FilterRegistrationBean,ServletListenerRegistrationBean這3個東西來進行配置

 

    修改filter的映射json

 

[java]  view plain  copy
 
  1. @Configuration  
  2. public class WebConfig {  
  3.     @Bean  
  4.     public FilterRegistrationBean filterRegistrationBean(MyFilter myFilter){  
  5.         FilterRegistrationBean filterRegistrationBean = new FilterRegistrationBean();  
  6.         filterRegistrationBean.setFilter(myFilter);  
  7.         filterRegistrationBean.setEnabled(true);  
  8.         filterRegistrationBean.addUrlPatterns("/bb");  
  9.         return filterRegistrationBean;  
  10.     }     
  11. }  

 

   4. 配置servlet 容器springboot

    能夠經過兩種方式配置servlet容器,一種是經過properties文件,例如:session

 

[java]  view plain  copy
 
  1. server.port=8081  
  2. server.address=127.0.0.1  
  3. server.sessionTimeout=30  
  4. server.contextPath=/springboot  
完整的配置信息能夠看這  http://github.com/spring-projects/spring-boot/tree/master/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java

 

    另外一種方式是java代碼的形式:app

 

[java]  view plain  copy
 
  1. @Component  
  2. public class MyCustomizationBean implements EmbeddedServletContainerCustomizer  {  
  3.     /** 
  4.      * @param container 
  5.      * @see org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer#customize(org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer) 
  6.      */  
  7.     @Override  
  8.     public void customize(ConfigurableEmbeddedServletContainer container) {  
  9.          container.setContextPath("/sprintboot");  
  10.          container.setPort(8081);  
  11.          container.setSessionTimeout(30);  
  12.     }  
  13.        
  14. }  
   5. error 處理

 

   spring boot 提供了/error映射來進行錯誤處理,它會返回一個json來對錯誤信息進行描述(包含了http狀態和異常信息),例如404的錯誤

   

     固然能夠定製錯誤頁面,經過實現ErrorController接口,並將它裝配起來便可,以下:     

 

[java]  view plain  copy
 
  1. @Controller  
  2. public class ErrorHandleController implements ErrorController {  
  3.     /** 
  4.      * @return 
  5.      * @see org.springframework.boot.autoconfigure.web.ErrorController#getErrorPath() 
  6.      */  
  7.     @Override  
  8.     public String getErrorPath() {  
  9.         return "/screen/error";  
  10.     }  
  11.        
  12.     @RequestMapping  
  13.     public String errorHandle(){  
  14.         return getErrorPath();  
  15.     }  
  16. }  
    還能夠這樣:

 

 

[java]  view plain  copy
 
  1. @Component  
  2. private class MyCustomizer implements EmbeddedServletContainerCustomizer {  
  3.    
  4.     @Override  
  5.     public void customize(ConfigurableEmbeddedServletContainer container) {  
  6.         container.addErrorPages(new ErrorPage(HttpStatus.BAD_REQUEST, "/screen/error"));  
  7.     }  
  8.    
  9. }  
   6.模板引擎

 

    spring boot 會自動配置 FreeMarker,Thymeleaf,Velocity,只須要在pom中加入相應的依賴便可,例如應用Velocity   

 

[html]  view plain  copy
 
  1. <dependency>  
  2.      <groupId>org.springframework.boot</groupId>  
  3.      <artifactId>spring-boot-starter-velocity</artifactId>  
  4. </dependency>  
    默認配置下spring boot會從src/main/resources/templates目錄中去找模板

 

  7. jsp限制

    若是要在spring boot中使用jsp,得將應用打包成war,這裏有配置的example https://github.com/spring-projects/spring-boot/tree/master/spring-boot-samples/spring-boot-sample-web-jsp

相關文章
相關標籤/搜索