web-dev-qa-db-ja.com

WebMvcConfigurerAdapter型は推奨されていません。

Spring mvcバージョンの5.0.1.RELEASEに移行しただけですが、Eclipse STSでは突然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/");
    }
  ....
  }

どうすればこれを削除できますか。

93
alveomaster

Spring 5以降、あなたはインターフェースWebMvcConfigurerを実装する必要があります。

public class MvcConfig implements WebMvcConfigurer {

これは、Java 8がWebMvcConfigurerAdapterクラスの機能をカバーするインターフェースにデフォルトのメソッドを導入したためです。

こちらを参照してください。

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

181
Plog

私は今日Springfoxname__と呼ばれるSwaggerと同等のドキュメンテーションライブラリに取り組んでいて、Spring 5.0.8(現在実行中)ではインターフェースWebMvcConfigurername__が直接拡張できるクラスWebMvcConfigurationSupportname__クラスによって実装されていることがわかりました。

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/");
}
5

Springでは、すべてのリクエストは DispatcherServlet を通過します。 DispatcherServlet(フロントコントローラー)を介した静的ファイル要求を回避するために、 MVC静的コンテンツ を構成します。

春3.1。 クラスパス、WAR、またはファイルシステムから静的リソースを提供するようにResourceHttpRequestHandlersを設定するためのResourceHandlerRegistryを導入しました。 ResourceHandlerRegistryは、Webコンテキスト設定クラス内でプログラム的に設定できます。

  • /js/**パターンをResourceHandlerに追加しました。foo.jsディレクトリにあるwebapp/js/リソースを含めます。
  • /resources/static/**パターンをResourceHandlerに追加しました。foo.htmlディレクトリにあるwebapp/resources/リソースを含めます。
@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"/>

Spring Boot MVC静的コンテンツファイルがWARの webapp/resources フォルダにある場合。

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

org.springframework.web.servlet.config.annotation.WebMvcConfigurerを使う

Spring Boot 2.1.4.RELEASE(Spring Framework 5.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();
    }

}
0
Do Nhu Vy