1. 08 11月, 2012 2 次提交
  2. 07 11月, 2012 2 次提交
    • S
      Increase sleep time in ScheduledATAITests · 9a6ec1b4
      Sam Brannen 提交于
      This commit increases the sleep time in
      ScheduledAndTransactionalAnnotationIntegrationTests with the hope of
      improving the robustness of the test suite on the CI build server.
      9a6ec1b4
    • S
      Refactor & polish DateTimeFormatterFactory[Bean] · 85ab789f
      Sam Brannen 提交于
      This commit refactors the logic in DateTimeFormatterFactory's
      createDateTimeFormatter() method to ensure forward compatibility with
      possible future changes to the ISO enum.
      
      This commit also polishes the Javadoc for DateTimeFormatterFactoryBean.
      
      Issue: SPR-9959
      85ab789f
  3. 06 11月, 2012 9 次提交
  4. 05 11月, 2012 3 次提交
    • C
      Prefix zip archives with 'spring-framework' · a64b04af
      Chris Beams 提交于
      Prior to this change, zip archives were named
      
         spring-${version}-${classifier}.zip
      
      e.g.:
       - spring-3.2.0.RC1-dist.zip
       - spring-3.2.0.RC1-docs.zip
       - spring-3.2.0.RC1-schema.zip
      
      This commit updates the Gradle build script to ensure that the fully-
      qualified 'spring-framework' name is used consistently, such that names
      follow the pattern
      
         spring-framework-${version}-${classifier}.zip
      
      This includes the naming of the root-level directory within the -dist
      zip.
      
      Issue: SPR-9954
      a64b04af
    • S
      Update readme.txt regarding changelog location · 85411be3
      Sam Brannen 提交于
      85411be3
    • S
      Fix timezone issue in DateTimeFormatterFactory · 93c01e07
      Sam Brannen 提交于
      The DateTimeFormatterFactory introduced in SPR-7121 supports a timeZone
      property; however, this property is currently not properly supported.
      
      This commit addresses this issue by ensuring that the timeZone properly
      is honored.
      
      Issue: SPR-9953
      93c01e07
  5. 04 11月, 2012 17 次提交
  6. 03 11月, 2012 4 次提交
  7. 02 11月, 2012 3 次提交
    • C
      Respect spring.profiles.active in #addActiveProfile · c94bc2e7
      Chris Beams 提交于
      Prior to this commit, calls to ConfigurableEnvironment#addActiveProfile
      would cause any active profile values provided via the
      "spring.profiles.active" property to be ignored.
      
      Now these two mechanisms can be used in conjunction and work as
      expected.
      
      Issue: SPR-9944
      c94bc2e7
    • C
      Support SQL exception translation for MSSQL 209 · 74e86fe5
      Chris Beams 提交于
      SQL Server error 209 [1] will now raise a BadSqlGrammarException.
      
      [1]: http://www.sql-server-helper.com/error-messages/msg-1-500.aspx
      
      Issue: SPR-9946
      74e86fe5
    • C
      Initialize FrameworkServlet property sources eagerly · 1070e4d5
      Chris Beams 提交于
      Prior to this change,
      FrameworkServlet#configureAndRefreshWebApplicationContext called
       #postProcessWebApplicationContext(wac) and #applyInitializers(wac)
      prior to #refresh, but because servlet-based property source stubs were
      not replaced until #refresh, any post-processing or initialization
      routines could not benefit from accessing the Environment to retrieve
      properties from the ServletContext or ServletConfig.
      
      The workaround to this problem is detailed in SPR-9610 - the user simply
      needed to call WebApplicationContextUtils#initServletPropertySources
      manually within their ApplicationContextInitializer (or overridden
       #postProcessWebApplicationContext method)
      
      This commit ensures that
      FrameworkServlet#configureAndRefreshWebApplicationContext calls
      WebApplicationContextUtils#initServletPropertySources eagerly, prior to
      invoking #postProcessWebApplicationContext and #applyInitializers.
      Related Javadoc has also been updated throughout to clarify the behavior
      of #initServletPropertySources, when it can be called and what the
      effects are, etc.
      
      Note also that a reproduction issue was added to demonstrate the problem
      and verify its resolution [1].
      
      [1]: https://github.com/SpringSource/spring-framework-issues/tree/master/SPR-9610
      
      Issue: SPR-9610
      1070e4d5