Examples of WebMvcConfigurationSupport


Examples of org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport

  private List<HttpMessageConverter<?>> getDefaultConverters() {
    List<HttpMessageConverter<?>> converters = new ArrayList<HttpMessageConverter<?>>();
    if (ClassUtils.isPresent("org.springframework.web.servlet.config.annotation."
        + "WebMvcConfigurationSupport", null)) {
      converters.addAll(new WebMvcConfigurationSupport() {
        public List<HttpMessageConverter<?>> defaultMessageConverters() {
          return super.getMessageConverters();
        }
      }.defaultMessageConverters());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.