如何使用servlet 3.0 java配置指定mime-mapping?

前端之家收集整理的这篇文章主要介绍了如何使用servlet 3.0 java配置指定mime-mapping?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用Servlet 3.0并希望将我现有的web.xml文件转换为java配置.配置servlet /过滤器等似乎非常直接.我无法弄清楚如何转换以下mime-mapping.谁能帮我吗?

最佳答案
我在Spring Boot应用程序中遇到了这个问题.我的解决方案是创建一个实现org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer的类,如下所示:

@Configuration
public class MyMimeMapper implements EmbeddedServletContainerCustomizer {
  @Override
  public void customize(ConfigurableEmbeddedServletContainer container) {
    MimeMappings mappings = new MimeMappings(MimeMappings.DEFAULT);
    mappings.add("xsd","text/xml; charset=utf-8");
    container.setMimeMappings(mappings);
  }
}
原文链接:https://www.f2er.com/spring/432694.html

猜你在找的Spring相关文章