springmvc favicon.ico配置
spring版本:3.0.5.RELEASE
1.在web.xml中添加:
<mime-mapping> <extension>ico</extension> <mime-type>image/vnd.microsoft.icon</mime-type> </mime-mapping>
2.在xxx-servlet.xml中添加:
<mvc:resources mapping="/favicon.ico" location="/favicon.ico"/>