SpringMVC配置靜態資源訪問
1、靜態資源配置
<mvc:default-servlet-handler/>
2、完整配置
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<context:component-scan base-package="com.nextgame.web" />
<!--mvc靜態資源訪問 -->
<mvc:default-servlet-handler/>
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/views/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
</beans>
3、問題
the prefix "mvc" for element "mvc:default-servlet-handler" is not bound
在xml的beans中新增
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"
4、靜態資源存放位置
靜態資源存放在工程中的webapp目錄下,可自定義子目錄。
5、瀏覽器訪問靜態圖片
相關文章
- SpringMVC下關於靜態資源訪問SpringMVC
- SpringMVC訪問靜態資源的三種方式SpringMVC
- SpringBoot靜態資源訪問Spring Boot
- springboot+themeleaf+bootstrap訪問靜態資源/無法訪問靜態資源/圖片Spring Boot
- SpringMVC中已經配置了靜態資源,依然無法訪問,css可以訪問成功,但圖片就是載入不出來。SpringMVCCSS
- webpack簡單搭建localhost訪問靜態資源Weblocalhost
- Springboot中如何訪問靜態資源Spring Boot
- springboot新增靜態資源無法訪問Spring Boot
- Websphere中靜態資源配置Web
- 如何在nginx配置靜態資源Nginx
- SpringBoot之yaml語法及靜態資源訪問Spring BootYAML
- Spring Boot 靜態資源配置 A卷Spring Boot
- Nginx靜態資源伺服器配置Nginx伺服器
- 八、SpringMVC--SpringMVC 表單標籤 和處理靜態資源SpringMVC
- Laravel 在 Docker 環境下訪問 storage 靜態資源 404 問題解決LaravelDocker
- cdn.jsdelivr.net 掛了?前端靜態資源訪問出錯JSVR前端
- SpringMVC學習筆記9-靜態資源對映SpringMVC筆記
- 請教下 log 檔案配置在 django 專案靜態資源直接訪問亂碼怎麼解決?Django
- JavaWeb專案目錄+SpringMVC靜態資源+Tomcat測試htmlJavaWebSpringMVCTomcatHTML
- nginx靜態資源伺服器簡單配置Nginx伺服器
- Linux配置靜態IP解決無法訪問網路問題Linux
- 【原始碼分析】 - SprignBoot是如何訪問工程目錄下的靜態資源?原始碼boot
- webpack 靜態資源管理Web
- Web靜態資源加速Web
- 靜態資源公共庫
- WPF:靜態、動態資源以及資源詞典
- 循序漸進nginx(二):反向代理、負載均衡、快取服務、靜態資源訪問Nginx負載快取
- 靜態資源伺服器伺服器
- Django不顯示CSS的效果(基於Django模板的靜態資源配置問題)DjangoCSS
- Gradle裡配置jetty實現靜態資源的熱部署GradleJetty熱部署
- spring boot 自定義規則訪問獲取內部或者外部靜態資源圖片Spring Boot
- 008.Nginx靜態資源Nginx
- 【Nginx】Nginx部署前端靜態資源Nginx前端
- C:static 關鍵字、靜態變數、跨類訪問資料變數
- nginx靜態資原始檔無法訪問,403 forbidden錯誤NginxORB
- SpringMVC連線多資料來源配置SpringMVC
- Nginx配置靜態代理/靜態資源對映時root與alias的區別,帶字首對映用aliasNginx
- 關於多執行緒訪問靜態方法的問題執行緒