1. 13 Oct, 2014 4 commits
    • Andy Wilkinson's avatar
      Fix some grammar issues in docs · 72115719
      Andy Wilkinson authored
      Closes gh-1695
      72115719
    • Andy Wilkinson's avatar
      Merge branch '1.1.x' · 4308d111
      Andy Wilkinson authored
      4308d111
    • Eric Dahl's avatar
      Fix some grammar issues in docs · 16937746
      Eric Dahl authored
      16937746
    • Andy Wilkinson's avatar
      Fix ArrayStoreException caused by JerseyAutoConfiguration · 2b7bf3e7
      Andy Wilkinson authored
      JerseyAutoConfiguration is annotated with @ConditionalOnClass. It
      references both SpringComponentProvider.class and
      ServletRegistration.class. Normally, this wouldn't be a problem as, in
      the absence of either of those classes, the configuration class bean
      will not be present in the bean factory and, therefore, its
      annotations will never be introspected using reflection.
      
      However, JerseyAutoConfiguration is a WebApplicationInitializer. This
      means that when it's deployed to a standalone container,
      JerseyAutoConfiguration is found by the container and its class is
      passed to SpringServletContainerInitializer.
      SpringServletContainerInitializer introspects every
      WebApplicationInitializer class so that it can order them. This blows
      up if Jersey's SpringComponentProvider class isn't on the classpath as
      the annotation is referencing SpringComponentProvider as a Class and
      the attempt to load it fails. The problem can be avoided by
      referencing SpringComponentProvider using a String.
      
      Fixes gh-1696
      2b7bf3e7
  2. 11 Oct, 2014 1 commit
  3. 10 Oct, 2014 16 commits
  4. 09 Oct, 2014 19 commits