一,配置檔案位於類路徑下
例如下圖的spring-dao.xml
在**中:
new"spring-dao.xml"
);
在單元測試中:
@runwith
(springjunit4classrunner.
class
) @contextconfiguration
(locations=)
二,配置檔案位於web-inf目錄下
在**中:
newnew
);
在單元測試中:
@runwith
(springjunit4classrunner.
class
) @contextconfiguration
(locations=)
需要注意的是在單元測試中一定要注意版本是否衝突的問題,否則很容易出問題!
訪問web inf下的jsp
方法1 本來web inf中的jsp就是無法通過位址列訪問的.所以安全.如果說你要訪問這個資料夾中的jsp檔案需要在專案的web.xml檔案中去配置servlet格式差不多的配置就ok了。如下 html view plain copy servlet servlet name runtain ser...
Java web訪問WEB INF下的jsp的方法
方法1 本來web inf中的jsp就是無法通過位址列直接訪問到的,所以相對來說要安全一些。如果你要訪問這個資料夾中的jsp檔案需要在專案的web.xml檔案中去配置servlet格式。如下 html view plain copy runtain web inf inf.jsp runtain 方...
訪問 WEB INF 下的 jsp 和 html
因為web inf下,應用伺服器把它指為禁訪目錄,即直接在瀏覽器裡是不能訪問到的。但是可以讓servlet進行訪問,如web inf下有a.jsp則可以用request.getrequestdispatcher web inf a.jsp forward request,response 如果想訪問...