Tomcat是否可以指定/更改为没有扩展名的文件发送的MIME类型?
答案 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帖子。