自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

Spring REST配置指南與問題總結(jié)

開發(fā) 后端
springmvc 3.0 中增加 RESTful URL功能,構(gòu)造出類似javaeye現(xiàn)在的URL。本文對Spring REST的配置進(jìn)行了總結(jié),描述了其中遇到的一些問題。

下一版本的rapid-framework需要集成spring RESTful URL。最近JavaEye的badqiu對于如何搭建spring RESTful URL進(jìn)行了研究,并總結(jié)問題如下。

springmvc 3.0 中增加 RESTful URL功能,構(gòu)造出類似javaeye現(xiàn)在的URL。比如如下URL

  1. /blog/1  HTTP GET =>    得到id = 1的blog  
  2. /blog/1  HTTP DELETE => 刪除 id = 1的blog  
  3. /blog/1  HTTP PUT  =>   更新id = 1的blog  
  4. /blog     HTTP POST =>   新增BLOG 

以下詳細(xì)解一下spring rest使用.

首先,我們帶著如下兩個(gè)問題查看本文。

1. 如何在java構(gòu)造沒有擴(kuò)展名的RESTful url,如 /forms/1,而不是 /forms/1.do

2. 瀏覽器的form標(biāo)簽不支持提交delete,put請求,如何曲線解決

springmvc rest 實(shí)現(xiàn)

springmvc的resturl是通過@RequestMapping 及@PathVariable annotation提供的,通過如@RequestMapping(value="/blog/{id}",method=RequestMethod.DELETE)即可處理/blog/1 的delete請求.

  1. @RequestMapping(value="/blog/{id}",method=RequestMethod.DELETE)  
  2. public ModelAndView delete(@PathVariable Long id,HttpServletRequest request,HttpServletResponse response) {  
  3.  blogManager.removeById(id);  
  4.  return new ModelAndView(LIST_ACTION);  
  5. }  
  6.   

@RequestMapping @PathVariable如果URL中帶參數(shù),則配合使用,如

  1. @RequestMapping(value="/blog/{blogId}/message/{msgId}",method=RequestMethod.DELETE)  
  2. public ModelAndView delete(@PathVariable("blogId") Long blogId,@PathVariable("msgId") Long msgId,HttpServletRequest request,HttpServletResponse response) {  
  3. }  
  4.   

spring rest配置指南

1. springmvc web.xml配置

  1. < !-- 該servlet為tomcat,jetty等容器提供,將靜態(tài)資源映射從/改為/static/目錄,如原來訪問 http://localhost/foo.css ,現(xiàn)在http://localhost/static/foo.css --> 
  2. < servlet-mapping> 
  3.  < servlet-name>default< /servlet-name> 
  4.  < url-pattern>/static/*< /url-pattern> 
  5. < /servlet-mapping> 
  6. < servlet> 
  7.     < servlet-name>springmvc< /servlet-name> 
  8.     < servlet-class>org.springframework.web.servlet.DispatcherServlet< /servlet-class> 
  9.     < load-on-startup>1< /load-on-startup> 
  10. < /servlet> 
  11.  
  12. < !-- URL重寫filter,用于將訪問靜態(tài)資源http://localhost/foo.css 轉(zhuǎn)為http://localhost/static/foo.css --> 
  13. < filter> 
  14.  < filter-name>UrlRewriteFilter< /filter-name> 
  15.  < filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter< /filter-class> 
  16.  < init-param> 
  17.       < param-name>confReloadCheckInterval< /param-name> 
  18.       < param-value>60< /param-value> 
  19.      < /init-param> 
  20.  < init-param> 
  21.              < param-name>logLevel< /param-name> 
  22.              < param-value>DEBUG< /param-value> 
  23.         < /init-param>       
  24. < /filter> 
  25. < filter-mapping> 
  26.  < filter-name>UrlRewriteFilter< /filter-name> 
  27.  < url-pattern>/*< /url-pattern> 
  28. < /filter-mapping> 
  29.  
  30. < !-- 覆蓋default servlet的/, springmvc servlet將處理原來處理靜態(tài)資源的映射 --> 
  31. < servlet-mapping> 
  32.     < servlet-name>springmvc< /servlet-name> 
  33.     < url-pattern>/< /url-pattern> 
  34. < /servlet-mapping> 
  35.  
  36. < !-- 瀏覽器不支持put,delete等method,由該filter將/blog?_method=delete轉(zhuǎn)換為標(biāo)準(zhǔn)的http delete方法 --> 
  37. < filter> 
  38.  < filter-name>HiddenHttpMethodFilter< /filter-name> 
  39.  < filter-class>org.springframework.web.filter.HiddenHttpMethodFilter< /filter-class> 
  40. < /filter> 
  41.  
  42. < filter-mapping> 
  43.  < filter-name>HiddenHttpMethodFilter< /filter-name> 
  44.  < servlet-name>springmvc< /servlet-name> 
  45. < /filter-mapping> 

2. webapp/WEB-INF/springmvc-servlet.xml配置,使用如下兩個(gè)class激活@RequestMapping annotation

  1. < bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"/> 
  2. < bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"/> 

完整配置

  1. < beans default-autowire="byName"   > 
  2.  
  3.  < !-- 自動(dòng)搜索@Controller標(biāo)注的類 --> 
  4.  < context:component-scan base-package="com.**.controller"/> 
  5.    
  6.     < bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"/> 
  7.  
  8.     < bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"/> 
  9.  
  10.     < !-- Default ViewResolver --> 
  11.     < bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
  12.         < property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/> 
  13.         < property name="prefix" value="/pages"/> 
  14.         < property name="suffix" value=".jsp">< /property> 
  15.     < /bean> 
  16.       
  17.     < bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource" p:basename="i18n/messages"/> 
  18.  
  19.     < !-- Mapping exception to the handler view --> 
  20.     < bean id="exceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver"> 
  21.      < !-- to /commons/error.jsp --> 
  22.         < property name="defaultErrorView" value="/commons/error"/> 
  23.         < property name="exceptionMappings"> 
  24.             < props> 
  25.             < /props> 
  26.         < /property> 
  27.     < /bean> 
  28.           
  29. < /beans> 
  30.    

3. Controller編寫

  1. /**  
  2.  * @RequestMapping("/userinfo") 具有層次關(guān)系,方法級的將在類一級@RequestMapping之一,  
  3.  * 如下面示例, 訪問方法級別的@RequestMapping("/new"),則URL為 /userinfo/new  
  4.  */ 
  5. @Controller 
  6. @RequestMapping("/userinfo")  
  7. public class UserInfoController extends BaseSpringController{  
  8.  //默認(rèn)多列排序,example: username desc,createTime asc  
  9.  protected static final String DEFAULT_SORT_COLUMNS = null;   
  10.    
  11.  private UserInfoManager userInfoManager;  
  12.    
  13.  private final String LIST_ACTION = "redirect:/userinfo";  
  14.    
  15.  /**   
  16.   * 通過spring自動(dòng)注入  
  17.   **/ 
  18.  public void setUserInfoManager(UserInfoManager manager) {  
  19.   this.userInfoManager = manager;  
  20.  }  
  21.    
  22.  /** 列表 */ 
  23.  @RequestMapping 
  24.  public ModelAndView index(HttpServletRequest request,HttpServletResponse response,UserInfo userInfo) {  
  25.   PageRequest< Map> pageRequest = newPageRequest(request,DEFAULT_SORT_COLUMNS);  
  26.   //pageRequest.getFilters(); //add custom filters  
  27.     
  28.   Page page = this.userInfoManager.findByPageRequest(pageRequest);  
  29.   savePage(page,pageRequest,request);  
  30.   return new ModelAndView("/userinfo/list","userInfo",userInfo);  
  31.  }  
  32.    
  33.  /** 進(jìn)入新增 */ 
  34.  @RequestMapping(value="/new")  
  35.  public ModelAndView _new(HttpServletRequest request,HttpServletResponse response,UserInfo userInfo) throws Exception {  
  36.   return new ModelAndView("/userinfo/new","userInfo",userInfo);  
  37.  }  
  38.    
  39.  /** 顯示 */ 
  40.  @RequestMapping(value="/{id}")  
  41.  public ModelAndView show(@PathVariable Long id,HttpServletRequest request,HttpServletResponse response) throws Exception {  
  42.   UserInfo userInfo = (UserInfo)userInfoManager.getById(id);  
  43.   return new ModelAndView("/userinfo/show","userInfo",userInfo);  
  44.  }  
  45.    
  46.  /** 編輯 */ 
  47.  @RequestMapping(value="/{id}/edit")  
  48.  public ModelAndView edit(@PathVariable Long id,HttpServletRequest request,HttpServletResponse response) throws Exception {  
  49.   UserInfo userInfo = (UserInfo)userInfoManager.getById(id);  
  50.   return new ModelAndView("/userinfo/edit","userInfo",userInfo);  
  51.  }  
  52.    
  53.  /** 保存新增 */ 
  54.  @RequestMapping(method=RequestMethod.POST)  
  55.  public ModelAndView create(HttpServletRequest request,HttpServletResponse response,UserInfo userInfo) throws Exception {  
  56.   userInfoManager.save(userInfo);  
  57.   return new ModelAndView(LIST_ACTION);  
  58.  }  
  59.    
  60.  /** 保存更新 */ 
  61.  @RequestMapping(value="/{id}",method=RequestMethod.PUT)  
  62.  public ModelAndView update(@PathVariable Long id,HttpServletRequest request,HttpServletResponse response) throws Exception {  
  63.   UserInfo userInfo = (UserInfo)userInfoManager.getById(id);  
  64.   bind(request,userInfo);  
  65.   userInfoManager.update(userInfo);  
  66.   return new ModelAndView(LIST_ACTION);  
  67.  }  
  68.    
  69.  /** 刪除 */ 
  70.  @RequestMapping(value="/{id}",method=RequestMethod.DELETE)  
  71.  public ModelAndView delete(@PathVariable Long id,HttpServletRequest request,HttpServletResponse response) {  
  72.   userInfoManager.removeById(id);  
  73.   return new ModelAndView(LIST_ACTION);  
  74.  }  
  75.  
  76.  /** 批量刪除 */ 
  77.  @RequestMapping(method=RequestMethod.DELETE)  
  78.  public ModelAndView batchDelete(HttpServletRequest request,HttpServletResponse response) {  
  79.   String[] items = request.getParameterValues("items");  
  80.   for(int i = 0; i <  items.length; i++) {  
  81.    java.lang.Long id = new java.lang.Long(items[i]);  
  82.    userInfoManager.removeById(id);  
  83.   }  
  84.   return new ModelAndView(LIST_ACTION);  
  85.  }  
  86.    
  87. }  
  88.    

上面是rapid-framework 新版本生成器生成的代碼,以后也將應(yīng)用此規(guī)則,rest url中增刪改查等基本方法與Controller的方法映射規(guī)則

  1. /userinfo    => index()  
  2. /userinfo/new  => _new()  
  3. /userinfo/{id}  => show()  
  4. /userinfo/{id}/edit   => edit()  
  5. /userinfo  POST  => create()  
  6. /userinfo/{id}  PUT => update()  
  7. /userinfo/{id}  DELETE => delete()  
  8. /userinfo  DELETE  => batchDelete()  

注(不使用 /userinfo/add  => add() 方法是由于add這個(gè)方法會(huì)被maxthon瀏覽器當(dāng)做廣告鏈接過濾掉,因?yàn)榘琣d字符)

4. jsp 編寫

  1. < form:form action="${ctx}/userinfo/${userInfo.userId}" method="put"> 
  2. < /form:form> 
  3.  將生成一個(gè)hidden的_method=put,并于web.xml中的HiddenHttpMethodFilter配合使用,在服務(wù)端將post請求改為put請求  
  4.  
  5. < form id="userInfo" action="/springmvc_rest_demo/userinfo/2" method="post"> 
  6.  < input type="hidden" name="_method" value="put"/> 
  7. < /form> 
  8.    

另外一種方法是你可以使用ajax發(fā)送put,delete請求.

5. 靜態(tài)資源的URL重寫

如上我們描述,現(xiàn)因?yàn)閷efault servlet映射至/static/的子目錄,現(xiàn)我們訪問靜態(tài)資源將會(huì)帶一個(gè)/static/前綴.

如 /foo.gif, 現(xiàn)在訪問該文件將是 /static/foo.gif.

那如何避免這個(gè)前綴呢,那就是應(yīng)用URL rewrite,現(xiàn)我們使用 http://tuckey.org/urlrewrite/, 重寫規(guī)則如下

  1. < urlrewrite> 
  2.     < !-- 訪問jsp及jspx將不rewrite url,其它.js,.css,.gif等將重寫,如 /foo.gif => /static/foo.gif --> 
  3.     < rule> 
  4.      < condition operator="notequal" next="and" type="request-uri">.*.jsp< /condition> 
  5.      < condition operator="notequal" next="and" type="request-uri">.*.jspx< /condition> 
  6.         < from>^(/.*\..*)$< /from> 
  7.         < to>/static$1< /to> 
  8.     < /rule> 
  9. < /urlrewrite> 
  10.     

另筆者專門寫了一個(gè) RestUrlRewriteFilter來做同樣的事件,以后會(huì)隨著rapid-framework一周發(fā)布. 比這個(gè)更加輕量級.

并且該代碼已經(jīng)貢獻(xiàn)給spring,不知會(huì)不會(huì)在下一版本發(fā)布。

【編輯推薦】

  1. Spring依賴注入的兩種方式比對
  2. Spring實(shí)例化Bean的三種方式
  3. 簡單介紹Spring事務(wù)管理
  4. 詳細(xì)介紹Spring事務(wù)管理
  5. Spring中XML配置文件的十二個(gè)最佳方法(上)
責(zé)任編輯:yangsai 來源: JavaEye博客
相關(guān)推薦

2024-10-15 09:34:57

2023-05-11 12:40:00

Spring控制器HTTP

2009-09-23 17:52:16

Hibernate概念Hibernate常見

2009-09-22 11:49:34

ibmdwREST

2025-03-26 02:00:00

API工具開發(fā)

2009-06-17 16:14:22

Spring 3.0全

2022-03-07 11:02:02

ApacheTomcat運(yùn)維

2009-12-15 17:10:26

路由器配置

2009-07-29 17:45:09

ibmdwWebREST

2009-07-31 16:26:28

ibmdwREST

2016-12-20 16:03:08

大數(shù)據(jù)分析大數(shù)據(jù)

2023-10-17 08:36:28

Nginx代理服務(wù)器

2021-12-08 15:11:51

FreeDOSLinux

2011-03-15 09:46:31

2020-07-07 07:00:00

Spring WebFREST APIReactive AP

2011-03-25 10:37:17

2022-01-13 20:13:31

元宇宙搜索引擎

2015-06-05 15:29:16

網(wǎng)絡(luò)優(yōu)化

2013-09-10 15:32:38

Eclipse環(huán)境配置

2024-08-14 14:20:00

點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號