Java Web中如何訪問WEB-INF下的XML文件

Java讀取WEB-INF下XML文件並進行解析

轉自:http://blog.itpub.net/30066956/viewspace-1375249/html

分類: Java技術java

 

1、Spring配置文件在類路徑下面web

在Spring的java應用程序中,通常咱們的Spring的配置文件都是放在放在類路徑下面(也即編譯後會進入到classes目錄下)。spring

如下是個人項目,由於是用maven管理的,因此配置文件都放在「src/main/resources」目錄下app

 

這時候,在代碼中能夠經過框架

[java]  view plain copy
 
 
 
  1. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");  
而後獲取相應的bean。

 

若是代碼想用Junit測試框架來測試,則Spring提供了對Junit支持,還能夠使用註解的方式:webapp

[java]  view plain copy
 
 
 
  1. @RunWith(SpringJUnit4ClassRunner.class)  
  2. @ContextConfiguration(locations={"classpath:applicationContext.xml"})  

只須要在相應的Test類前面加上此兩個註解(第二個註解用來指明Spring的配置文件位置),就能夠在Junit Test類使用中Spring提供的依賴注入功能。maven


 

2、Spring配置文件在WEB-INF下面post

固然在作J2EE開發時,有些人習慣把Spring文件放在WEB-INF目錄(雖然更多人習慣放在類路徑下面)下面;或者有些Spring配置文件是放在類路徑下面,而有些又放在測試

WEB-INF目錄下面,以下圖。

 

這時候,在代碼中就不能夠使用ClassPathXmlApplicationContext來加載配置文件了,而應使用FileSystemXmlApplicationContext。

[java]  view plain copy
 
 
 
  1. ApplicationContext applicationContext = new FileSystemXmlApplicationContext("src/main/webapp/WEB-INF/applicationContext.xml");  

而後獲取相應的bean。

 

 

若是代碼想用Junit測試框架來測試,則Spring提供了對Junit支持,還能夠使用註解的方式:

 

[java]  view plain copy
 
 
 
  1. @RunWith(SpringJUnit4ClassRunner.class)  
  2. @ContextConfiguration(locations={"file:src/main/webapp/WEB-INF/applicationContext.xml"})   
只須要在相應的Test類前面加上此兩個註解(第二個註解用來指明Spring的配置文件位置),就能夠在Junit Test類使用中Spring提供的依賴注入功能。

 

 

下面是個人一個Spring管理下的Junit測試類:

 

[java]  view plain copy
 
 
 
  1. package com.sohu.group.service.external;  
  2.   
  3. import java.util.List;  
  4.   
  5. import org.junit.Test;  
  6. import org.junit.runner.RunWith;  
  7. import org.springframework.beans.factory.annotation.Autowired;  
  8. import org.springframework.test.context.ContextConfiguration;  
  9. import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;  
  10.   
  11. @RunWith(SpringJUnit4ClassRunner.class)  
  12. @ContextConfiguration({"file:src/main/webapp/WEB-INF/applicationContext.xml"})  
  13. public class SuFriendServiceImplOverRMITest {  
  14.   
  15.     @Autowired  
  16.     private SuFriendService suFriendService;  
  17.       
  18.     @Test  
  19.     public void getUserFollowerListTest(){  
  20.         List list = suFriendService.getUserFollowerList("liug_talk@163.com");  
  21.         System.out.println("------"+list);  
  22.     }  
  23. }  
相關文章
相關標籤/搜索