Springboot構成ブロッキング静的ページ中国語文字化けし
configクラスでは、WebMvcConfigurationSupportクラスから継承され、/***中国語の文字化けしの問題を解決する*@return*/
@Override
public void configureMessageConverters(List> converters) {
super.configureMessageConverters(converters);
converters.add(responseBodyConverter());
}
@Bean
public HttpMessageConverter responseBodyConverter() {
return new StringHttpMessageConverter(Charset.forName("UTF-8"));
}
@Override
public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
configurer.favorPathExtension(false);
}