1. 21 7月, 2011 1 次提交
    • J
      revised Servlet 3.0 based StandardServletMultipartResolver for correct... · 57153535
      Juergen Hoeller 提交于
      revised Servlet 3.0 based StandardServletMultipartResolver for correct param/file distinction; added multipart content type and headers access to MultipartRequest (dropping the previous header access solution on MultipartFile); MultipartFilter uses a Servlet 3.0 based StandardServletMultipartResolver by default
      57153535
  2. 19 7月, 2011 1 次提交
  3. 18 7月, 2011 2 次提交
  4. 14 7月, 2011 1 次提交
  5. 04 7月, 2011 2 次提交
  6. 03 7月, 2011 1 次提交
  7. 01 7月, 2011 1 次提交
  8. 30 6月, 2011 1 次提交
  9. 29 6月, 2011 2 次提交
  10. 28 6月, 2011 3 次提交
  11. 25 6月, 2011 2 次提交
  12. 24 6月, 2011 1 次提交
  13. 23 6月, 2011 2 次提交
  14. 17 6月, 2011 1 次提交
  15. 14 6月, 2011 1 次提交
  16. 09 6月, 2011 2 次提交
  17. 08 6月, 2011 1 次提交
  18. 06 6月, 2011 2 次提交
  19. 03 6月, 2011 2 次提交
  20. 31 5月, 2011 2 次提交
  21. 30 5月, 2011 7 次提交
    • C
      Introduce DelegatingFilterProxy constructors · 948aa4f5
      Chris Beams 提交于
      Issue: SPR-7672
      948aa4f5
    • C
      Polish DelegatingFilterProxy Javadoc · 1e1a05e9
      Chris Beams 提交于
      1e1a05e9
    • C
      Introduce ContextLoader(Listener) constructors · e36b5e9b
      Chris Beams 提交于
      Constructors have been added to both ContextLoader and
      ContextLoaderListener to support instance-based programmatic
      registration of listeners within ServletContainerInitializer
      implementations in Servlet 3.0+ environments, and more particularly
      when using Spring 3.1's WebApplicationInitializer SPI.
      
      Issue: SPR-7672
      e36b5e9b
    • C
      Improve ApplicationContextInitializer sorting · 2b432802
      Chris Beams 提交于
      ContextLoader and FrameworkServlet now use
      AnnotationAwareOrderComparator to support @order usage; previously
      supported only implementation of the Ordered interface.
      2b432802
    • C
      Update GenericWAC to implement ConfigurableWAC · fb9fb00c
      Chris Beams 提交于
      GenericWebApplicationContext now implements
      ConfigurableWebApplicationContext in order to be compatible with
      Framework/DispatcherServlet and ContextLoader/Listener, especially with
      regard to changes in SPR-7672 that allow for programmatic use of these
      types within Servlet 3.0+ environments.  For the first time, it's now
      reasonable to imagine injecting a GWAC into DispatcherServlet; the most
      robust way to accommodate this possibility is for GWAC to implement
      CWAC.
      
      The implementation is in name only, allowing for interchangable use of
      GWAC anywhere, for example, an XWAC could otherwise go.  Methods such
      as setConfigLocation will throw UnsupportedOperationException if the
      configLocation value actually contains text.  Other methods are
      implemented as no-ops or to throw UOE as appropriate.
      
      Issue: SPR-7672
      fb9fb00c
    • C
      Introduce Servlet 3.0 WebApplicationInitializer · c9e67b2e
      Chris Beams 提交于
      WebApplicationInitializer provides a programmatic alternative to the
      traditional WEB-INF/web.xml servlet container deployment descriptor
      for Servlet API 3.0+ environments.
      
      This is done by building atop the new ServletContainerInitializer
      support in Servlet 3.0. See SpringServletContainerInitializer for
      complete details. And see WebApplicationInitializer Javadoc for
      typical usage examples.
      
      Issue: SPR-7672
      c9e67b2e
    • J
      af8aff3e
  22. 25 5月, 2011 1 次提交
  23. 23 5月, 2011 1 次提交
    • C
      Introduce AnnotationConfigCapableApplicationContext · c696e195
      Chris Beams 提交于
      AnnotationConfigApplicationContext and
      AnnotationConfigWebApplicationContext both expose #register and #scan
      methods as of the completion of SPR-8320. This change introduces a new
      interface that declares each of these methods and refactors ACAC and
      ACWAC to implement it.
      
      Beyond information value, this is useful for implementors of the
      ApplicationContextInitializer interface, in that users may create an ACI
      that works consistently across ACAC and ACWAC for standalone (e.g.
      testing, batch) or web (e.g. production) use.
      
      Issue: SPR-8365,SPR-8320
      c696e195