1. 12 12月, 2012 1 次提交
  2. 26 11月, 2012 2 次提交
    • P
      Update whats new in Spring 3.2 · 1e48c789
      Phillip Webb 提交于
      Issue: SPR-10015
      1e48c789
    • P
      Migrate reference guide to well-formed docbook XML · c37080d4
      Phillip Webb 提交于
      Convert all docbook XML files to well-formed docbook 5 syntax:
       - Include xsi:schemaLocation element for tools support
       - Convert all id elements to xml:id
       - Convert all ulink elements to link
       - Simplify <lineannotation> mark-up
       - Fix misplaced </section> tags
       - Fix <interface> tags to <interfacename>
       - Cleanup trailing whitespace and tabs
      
      Issue: SPR-10032
      c37080d4
  3. 22 10月, 2012 1 次提交
  4. 29 8月, 2012 2 次提交
    • R
      Provide support for filter registrations · cb564b28
      Rossen Stoyanchev 提交于
      The AbstractDispatcherServletInitializer now provides support for
      the registration of filters to be mapped to the DispatcherServlet.
      It also sets the asyncSupported flag by default on the
      DispatcherServlet and all registered filters.
      
      Issue: SPR-9696
      cb564b28
    • R
      Add support for matrix variables · 2201dd8c
      Rossen Stoyanchev 提交于
      A new @MatrixVariable annotation allows injecting matrix variables
      into @RequestMapping methods. The matrix variables may appear in any
      path segment and should be wrapped in a URI template for request
      mapping purposes to ensure request matching is not affected by the
      order or the presence/absence of such variables. The @MatrixVariable
      annotation has an optional "pathVar" attribute that can be used to
      refer to the URI template where a matrix variable is located.
      
      Previously, ";" (semicolon) delimited content was removed from the
      path used for request mapping purposes. To preserve backwards
      compatibility that continues to be the case (except for the MVC
      namespace and Java config) and may be changed by setting the
      "removeSemicolonContent" property of RequestMappingHandlerMapping to
      "false". Applications using the  MVC namespace and Java config do not
      need to do anything further to extract and use matrix variables.
      
      Issue: SPR-5499, SPR-7818
      2201dd8c
  5. 28 8月, 2012 1 次提交
    • R
      Polish standard Spring MVC exception handling · da05b094
      Rossen Stoyanchev 提交于
      Rename ExceptionHandlerSupport to ResponseEntityExceptionHandler and
      emphasize the contrast to DefaultHandlerExceptionResovler -- i.e.
      one returns a ResponseEntity and relies on message converters while
      the other returns a ModelAndView and relies on view resolution.
      
      Issue: SPR-9290
      da05b094
  6. 24 8月, 2012 1 次提交