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/");
}
....
}
どうすればこれを削除できますか。
Spring 5以降、あなたはインターフェースWebMvcConfigurer
を実装する必要があります。
public class MvcConfig implements WebMvcConfigurer {
これは、Java 8がWebMvcConfigurerAdapter
クラスの機能をカバーするインターフェースにデフォルトのメソッドを導入したためです。
こちらを参照してください。
私は今日Springfox
name__と呼ばれるSwaggerと同等のドキュメンテーションライブラリに取り組んでいて、Spring 5.0.8(現在実行中)ではインターフェースWebMvcConfigurer
name__が直接拡張できるクラスWebMvcConfigurationSupport
name__クラスによって実装されていることがわかりました。
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では、すべてのリクエストは 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/**
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();
}
}