javaweb項目如何訪問靜態資源?
1 在spring框架下,如果讓mvc攔截所有路徑,需要配置靜態資源路徑:
<mvc:resources location="/image" mapping="image/**"/><mvc:resources location="/css" mapping="css/**"/>
現在一般都使用rest風格接口, 即mvc攔截/rest/**請求, 所以只要把靜態文件放在其他路徑就可以了2 原生servlet,struct2 直接訪問即可javaweb項目如何訪問靜態資源?
1 在spring框架下,如果讓mvc攔截所有路徑,需要配置靜態資源路徑:
<mvc:resources location="/image" mapping="image/**"/><mvc:resources location="/css" mapping="css/**"/>
現在一般都使用rest風格接口, 即mvc攔截/rest/**請求, 所以只要把靜態文件放在其他路徑就可以了2 原生servlet,struct2 直接訪問即可