码迷,mamicode.com
首页 > 编程语言 > 详细

SpringMVC工程环境由tomcat切换到weblogic,访问不到静态资源

时间:2019-09-07 20:49:18      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:websphere   tail   target   def   col   Servle   tty   地址   url   

在org.springframework.web.servlet.DispatcherServlet之前加入

<servlet-mapping>   
    <servlet-name>FileServlet</servlet-name>   
    <url-pattern>*.js</url-pattern>   
</servlet-mapping>

而在tomcat下为:

<servlet-mapping>
  <servlet-name>default</servlet-name>
  <url-pattern>*.js</url-pattern>
</servlet-mapping>

不同的应用服务器对应的静态资源文件处理的servlet名称不尽相同:

tomcat,jboss,glassfish,jetty : defaut;  
weblogic : FileServlet;  
websphere : SimpleFileServlet;  
resin : resin-file;  
GAE : _ah_default

原文地址:https://blog.csdn.net/tustyao/article/details/50401905

SpringMVC工程环境由tomcat切换到weblogic,访问不到静态资源

标签:websphere   tail   target   def   col   Servle   tty   地址   url   

原文地址:https://www.cnblogs.com/zqm-sau/p/11482918.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!