1. 07 11月, 2019 1 次提交
  2. 23 3月, 2019 1 次提交
  3. 08 6月, 2018 1 次提交
  4. 08 12月, 2016 1 次提交
  5. 05 7月, 2016 1 次提交
  6. 01 3月, 2016 1 次提交
    • S
      Introduce composed annotations for @RequestMapping · 467b5f3f
      Sam Brannen 提交于
      This commit introduces the following common composed annotations for
      @RequestMapping in Spring MVC and Spring MVC REST.
      
      - @GetMapping
      - @PostMapping
      - @PutMapping
      - @DeleteMapping
      - @PatchMapping
      
      Issue: SPR-13992
      467b5f3f
  7. 23 9月, 2015 1 次提交
  8. 24 4月, 2015 1 次提交
  9. 15 2月, 2014 1 次提交
  10. 14 5月, 2013 1 次提交
  11. 22 1月, 2013 1 次提交
  12. 08 1月, 2013 1 次提交
  13. 07 12月, 2012 1 次提交
    • R
      Fix issue with suffix pattern match · 9cc4bd89
      Rossen Stoyanchev 提交于
      Spring Framework 3.2 M2 added the ability to map requests using only
      file extensions registered through the configured through a
      ContentNeotiationManager, as opposed to allowing any file extension
      (i.e. ".*"). The MVC namespace the MVC Java config automatically
      register extensions such as ".json" and ".xml" depending on libraries
      found on the classpath. That in turn causes issues in cases where
      additional extensions are in use but not registered (e.g. ".html").
      
      This change ensures that matching with registered file extensions only
      works only if explicitly enabled through a property on
      RequestMappingHandlerMapping.
      
      Issue: SPR-10061, SPR-8474
      9cc4bd89