spring和resteasy整合的注意事项

1、如果restful服务不要前缀

那么这种方式只有和spring mvc整合后才可以,spring bean配置文件要添加



这个就是和spring mvc进行整合。

且要使用servlet初始化器


        org.jboss.resteasy
        resteasy-servlet-initializer
        ${resteasy-version}
   

2、如果restful服务,有前缀,那么和spring mvc整合或不整合(spring的方式)都可以。

web.xml中进行如下配置



      resteasy
      org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher
     
      resteasy.servlet.mapping.prefix
        /rs
     

   

  
   
      resteasy
      /rs/*
   

你可能感兴趣的:(spring,mvc)