1. 30 Jun, 2015 7 commits
  2. 29 Jun, 2015 10 commits
  3. 28 Jun, 2015 6 commits
    • Dave Syer's avatar
      Tweak docs on /health endpoint to reflect secure/sensitive · c39b9f76
      Dave Syer authored
      Fixes gh-2816
      c39b9f76
    • Stephane Nicoll's avatar
      Merge pull request #3344 from izeye/docs-20150628 · 8c977567
      Stephane Nicoll authored
      * pr/3344:
        Polish doc
      8c977567
    • izeye's avatar
      Polish doc · 4bc7919e
      izeye authored
      Closes gh-3344
      4bc7919e
    • Stephane Nicoll's avatar
      Merge pull request #3123 from bclozel/gh-1604 · a990cc18
      Stephane Nicoll authored
      * pr/3123:
        Polish
        Improve Spring Resource Handling support
      a990cc18
    • Stephane Nicoll's avatar
      Polish · a6ccb4a6
      Stephane Nicoll authored
      Polish resource handling chain support. Make sure that the chain is
      enabled automatically if at least one strategy is enabled.
      
      See gh-1604
      a6ccb4a6
    • Brian Clozel's avatar
      Improve Spring Resource Handling support · dd561d15
      Brian Clozel authored
      This commit improves support of the Resource Handling features
      introduced in Spring Framework 4.1. Those features add new ways to
      resolve and transform static resources in applications.
      See [this blog
      post](https://spring.io/blog/2014/07/24/spring-framework-4-1-handling-static-web-resources)
      for more details.
      
      The `ResourceUrlEncodinFilter` is added for compatible template engines:
      Velocity and Thymeleaf. It assists them with rewriting the URLs of
      static resources when rendering templates.
      
      New keys are added in the `ResourceProperties` in order to configure
      the Resource Handling chain. `ResourceResolvers` and
      `ResourceTransformers` are registered accordingly in
      `WebMvcAutoConfiguration`.
      
      Here is an example of enabling a `ContentVersionStrategy` on all
      static resources, meaning their names will be changed for cache
      busting purposes by adding a content hash at the end of the file name.
      Like "/js/jquery.js -> /js/jquery-872ca6a9fdda9e2c1516a84cff5c3bc6.js".
      
      ```
      spring.resources.chain.enabled:true
      spring.resources.chain.strategy.content.enabled:true
      spring.resources.chain.strategy.content.paths:/**
      ```
      
      Closes gh-1604
      Closes gh-3123
      dd561d15
  4. 26 Jun, 2015 16 commits
  5. 25 Jun, 2015 1 commit
    • Phillip Webb's avatar
      Report logback errors in the exception · 5eb9cd01
      Phillip Webb authored
      Update LogbackLoggingSystem to include status errors in the exception
      rather than using `System.err`. Also perform additional cleanup in an
      attempt to fix CI build failures.
      
      Fixes gh-3309
      5eb9cd01