Created
March 9, 2011 08:09
-
-
Save michael-simons/861863 to your computer and use it in GitHub Desktop.
Configuration for replacing Spring 3 mvc:annotation-driven
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean" /> | |
<bean id="conversion-service" class="org.springframework.format.support.FormattingConversionServiceFactoryBean" /> | |
<bean id="pathMatcher" class="ac.simons.utils.ExtendedAntPathMatcher" /> | |
<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"> | |
<property name="order" value="0" /> | |
<property name="useDefaultSuffixPattern" value="true" /> | |
<property name="pathMatcher" ref="pathMatcher" /> | |
</bean> | |
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"> | |
<property name="pathMatcher" ref="pathMatcher" /> | |
<property name="webBindingInitializer"> | |
<bean class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer"> | |
<property name="conversionService" ref="conversion-service" /> | |
<property name="validator" ref="validator" /> | |
</bean> | |
</property> | |
<property name="messageConverters"> | |
<list> | |
<bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter" /> | |
<bean class="org.springframework.http.converter.StringHttpMessageConverter"> | |
<property name="writeAcceptCharset" value="false" /> | |
</bean> | |
<bean class="org.springframework.http.converter.ResourceHttpMessageConverter" /> | |
<bean class="org.springframework.http.converter.xml.SourceHttpMessageConverter" /> | |
<bean class="org.springframework.http.converter.xml.XmlAwareFormHttpMessageConverter" /> | |
<bean class="org.springframework.http.converter.xml.Jaxb2RootElementHttpMessageConverter" /> | |
<bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter" /> | |
<bean class="org.springframework.http.converter.feed.AtomFeedHttpMessageConverter" /> | |
<bean class="org.springframework.http.converter.feed.RssChannelHttpMessageConverter" /> | |
</list> | |
</property> | |
</bean> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment