不推荐使用 WebMvcConfigurerAdapter 类型

我刚刚迁移到春季 mvc 版本 5.0.1.RELEASE,但突然在 Eclipse 中 WebMvcConfigurerAdapter 被标记为不推荐

public class MvcConfig extends WebMvcConfigurerAdapter {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/resources/**").addResourceLocations("/resources/");
// to serve static .html pages...
registry.addResourceHandler("/static/**").addResourceLocations("/resources/static/");
}
....
}

我怎么才能把这个拿掉!

129171 次浏览

从 Spring5开始,你只需要实现接口 WebMvcConfigurer:

public class MvcConfig implements WebMvcConfigurer {

这是因为 Java8在接口上引入了默认方法,这些方法涵盖了 WebMvcConfigurerAdapter类的功能

看这里:

Https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/servlet/config/annotation/webmvcconfigureradapter.html

我最近一直在研究 Swagger 等价的文档库 Springfox,我发现在 Spring 5.0.8(目前正在运行)中,接口 WebMvcConfigurer已经被类 WebMvcConfigurationSupport实现,我们可以直接扩展它。

import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;


public class WebConfig extends WebMvcConfigurationSupport { }

这就是我如何使用它来设置我的资源处理机制如下-

@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("swagger-ui.html")
.addResourceLocations("classpath:/META-INF/resources/");


registry.addResourceHandler("/webjars/**")
.addResourceLocations("classpath:/META-INF/resources/webjars/");
}

在 Spring 中,每个请求都会经过 调度员 Servlet。为了避免通过 DispatcherServlet (前端控制器)的静态文件请求,我们配置 静态内容

春季3.1。 引入了 ResourceHandlerRegistry 来配置 ResourceHttpRequestHandlers,以便从类路径、 WAR 或文件系统提供静态资源。我们可以在 Web 上下文配置类中以编程方式配置 ResourceHandlerRegistry。

  • 我们已经将 /js/**模式添加到 ResourceHandler 中,让它包含位于 webapp/js/目录中的 foo.js资源
  • 我们已经将 /resources/static/**模式添加到 ResourceHandler 中,让它包含位于 webapp/resources/目录中的 foo.html资源
@Configuration
@EnableWebMvc
public class StaticResourceConfiguration implements WebMvcConfigurer {


@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
System.out.println("WebMvcConfigurer - addResourceHandlers() function get loaded...");
registry.addResourceHandler("/resources/static/**")
.addResourceLocations("/resources/");


registry
.addResourceHandler("/js/**")
.addResourceLocations("/js/")
.setCachePeriod(3600)
.resourceChain(true)
.addResolver(new GzipResourceResolver())
.addResolver(new PathResourceResolver());
}
}

XML 配置

<mvc:annotation-driven />
<mvc:resources mapping="/staticFiles/path/**" location="/staticFilesFolder/js/"
cache-period="60"/>

如果文件位于 WAR 的 Webapp/resources文件夹中,则为 Spring Boot 静态内容

spring.mvc.static-path-pattern=/resources/static/**

使用 org.springframework.web.servlet.config.annotation.WebMvcConfigurer

使用 SpringBoot2.1.4. RELEASE (SpringFramework5.1.6. RELEASE) ,可以这样做

package vn.bkit;


import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.ViewResolver;
import org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; // Deprecated.
import org.springframework.web.servlet.view.InternalResourceViewResolver;


@Configuration
@EnableWebMvc
public class MvcConfiguration implements WebMvcConfigurer {


@Bean
public ViewResolver getViewResolver() {
InternalResourceViewResolver resolver = new InternalResourceViewResolver();
resolver.setPrefix("/WEB-INF/");
resolver.setSuffix(".html");
return resolver;
}


@Override
public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
configurer.enable();
}


}