没有扩展名的文件的Tomcat MIME类型

时间:2016-03-04 12:05:09

标签: tomcat mime-types tomcat8

Tomcat是否可以指定/更改为没有扩展名的文件发送的MIME类型?

1 个答案:

答案 0 :(得分:1)

无法做到这一点,因为在tomcat中的conf / web.xml映射中需要提供扩展名。但是,您可以尝试从应用程序中使用servlet过滤器。例如:

public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws ServletException, IOException {
    response.setContentType("application/octet-stream");
    chain.doFilter(request, response);
}

检查This帖子。