springmvc對靜態資源的訪問

2021-07-25 11:45:35 字數 463 閱讀 5330

1、在webmvc-conf.xml檔案中,新增

location="/, /web-inf/web-resources/"
表示對專案中的靜態資源可以直接已專案名/resources來進行訪問。
2、controller層返回json資料方法:在配置檔案中增加如下配置

register-defaults="true">

name="supportedmediatypes"

value="text/html;charset=utf-8">

property>

bean>

mvc:message-converters>

mvc:annotation-driven>

,在controller的方法的返回型別前加@responsebody即可。

springmvc對靜態資源的訪問

在web.xml檔案中經常看到這樣的配置default,這個配置的作用是 對客戶端請求的靜態資源如 js檔案等的請求交由預設的servlet進行處理,如下所示 下面是從中摘錄的一些資料 如何你的dispatcherservlet攔截 do 這樣的有字尾的url,就不存在訪問不到靜態資源的問題。如果你...

SpringMVC 配置靜態資源

如何你的dispatcherservlet攔截 do這樣的url,就不存在訪問不到靜態資源的問題。如果你的dispatcherservlet攔截 攔截了所有的請求,同時對 js,jpg的訪問也就被攔截了。目的 可以正常訪問靜態檔案,不要找不到靜態檔案報404。方案一 啟用tomcat的default...

springMVC訪問靜態資源

web.xml springmvcservlet name org.springframework.web.servlet.dispatcherservletservlet class contextconfiglocationparam name classpath config spring s...