springframework
1.spring下的子專案
2.springframework source code
相關依賴包可在apache官網獲取一些:
spring-projects source code
spring tool suite: eclipse中開發spring的外掛程式(sts也可以認為是加了外掛程式的eclipse)
相關blog:
hello_world小例子
dispatcherservlet詳解
web框架之spring-mvc環境搭建
spring mvc防止資料重複提交
使用spring mvc統一異常處理實戰
springmvc使用者登入例項
Spring 資源載入
pom.xml org.springframework spring core 4.3.14.release org.springframework spring beans 4.3.16.release org.springframework spring context 4.3.16.relea...
Spring 靜態資源匹配
當我們在web.xml 中做如下配置的時候,dispatcherservlet 將會攔截所有的請求,包括對靜態資源的請求 css,jpg,js.這時候,如果我們沒有相應的做一些配置上的調整的話,客戶端將會出現404錯誤。為了解決這個問題,我們可以通過3種方式的配置來解決。這樣的配置效能應該是最高的,...
Spring 中使用資源
在web應用中如果自已的程式裡面需要用到外部資源檔案 配置檔案 一般會把配置檔案放在classes下面或web inf下面。如果載入這結檔案的話通常有兩種辦法。一是寫絕對路徑,這是最不推薦的方法。二是引入servletcontext,從相對路徑中獲得絕對路徑。寫相對路徑的時候使用servletcon...