자바 웹 에서 프로필 을 읽 는 네 가지 방법

11637 단어 javaweb프로필
방식 1:ServletContext 로 읽 기
설정 파일 의 realpath 를 가 져 온 다음 파일 흐름 을 통 해 읽 거나 방법 getReasurceAsStream()을 통 해 읽 습 니 다.
ServletContext 로 파일 경 로 를 읽 기 때문에 설정 파일 은 WEB-INF 의 classes 디 렉 터 리 에 넣 을 수도 있 고 응용 계층 및 WEB-INF 디 렉 터 리 에 넣 을 수도 있 습 니 다.파일 저장 위 치 는 eclipse 프로젝트 에서 src 아래 에 놓 을 수도 있 고 WEB-INF 및 Web-root 아래 에 놓 을 수도 있 습 니 다.추출 경 로 를 읽 은 후 파일 흐름 으로 읽 기 때문에 xml 와 properties 를 포함 한 임의의 프로필 을 읽 을 수 있 습 니 다.단점:servlet 밖에서 설정 정 보 를 읽 을 수 없습니다.
1.먼저 동적 자바 웹 프로젝트 를 만 듭 니 다.프로젝트 디 렉 터 리 는 다음 과 같 습 니 다.

2.servlet(FileReader.java)만 들 기

package com.xia.fileReader; 
import java.io.FileInputStream; 
import java.io.IOException; 
import java.io.InputStream; 
import java.io.InputStreamReader; 
import java.text.MessageFormat; 
import java.util.Properties; 
import javax.servlet.ServletException; 
import javax.servlet.http.HttpServlet; 
import javax.servlet.http.HttpServletRequest; 
import javax.servlet.http.HttpServletResponse; 
public class FileReader extends HttpServlet { 
 private static final long serialVersionUID = 1L; 
 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { 
 /** 
 * response.setContentType("text/html;charset=UTF-8");         UTF-8    ; 
 *              
 */ 
 response.setHeader("content-type","text/html;charset=UTF-8"); 
 readSrcDirPropCfgFile(response);//  src    db1.properties     
 response.getWriter().println("<hr/>"); 
 readWebRootDirPropCfgFile(response);//  WebRoot    db2.properties     
 response.getWriter().println("<hr/>"); 
 readSrcSourcePackPropCfgFile(response);//  src    config    db3.properties     
 response.getWriter().println("<hr/>"); 
 readWEBINFPropCfgFile(response);//  WEB-INF    JDBC    db4.properties     
 } 
 public void readSrcDirPropCfgFile(HttpServletResponse response) throws IOException { 
 String path = "/WEB-INF/classes/db1.properties"; 
 InputStream in = this.getServletContext().getResourceAsStream(path); 
 Properties props = new Properties(); 
 props.load(in); 
 String driver = props.getProperty("jdbc.driver"); 
 String url = props.getProperty("jdbc.url"); 
 String username = props.getProperty("jdbc.username"); 
 String password = props.getProperty("jdbc.password"); 
 response.getWriter().println("  src    db1.properties    "); 
 response.getWriter().println(MessageFormat.format( "driver={0},url={1},username={2},password={3}", 
 driver,url, username, password)); 
 } 
 public void readWebRootDirPropCfgFile(HttpServletResponse response) throws IOException{ 
 String path = "/db2.properties"; 
 InputStream in = this.getServletContext().getResourceAsStream(path); 
 Properties props = new Properties(); 
 props.load(in); 
 String driver = props.getProperty("jdbc.driver"); 
 String url = props.getProperty("jdbc.url"); 
 String username = props.getProperty("jdbc.username"); 
 String password = props.getProperty("jdbc.password"); 
 response.getWriter().println("  WebRoot    db2.properties    "); 
 response.getWriter().println(MessageFormat.format( "driver={0},url={1},username={2},password={3}", 
 driver,url, username, password)); 
 } 
 public void readSrcSourcePackPropCfgFile(HttpServletResponse response) throws IOException { 
 String path = "/WEB-INF/classes/config/db3.properties"; 
 String realPath = this.getServletContext().getRealPath(path); 
 InputStreamReader reader = new InputStreamReader(new FileInputStream(realPath),"UTF-8"); 
 Properties props = new Properties(); 
 props.load(reader); 
 String driver = props.getProperty("jdbc.driver"); 
 String url = props.getProperty("jdbc.url"); 
 String username = props.getProperty("jdbc.username"); 
 String password = props.getProperty("jdbc.password"); 
 response.getWriter().println("  src    config    db3.properties    "); 
 response.getWriter().println(MessageFormat.format( "driver={0},url={1},username={2},password={3}", 
 driver,url, username, password)); 
 } 
 public void readWEBINFPropCfgFile(HttpServletResponse response) throws IOException { 
 String path = "/WEB-INF/JDBC/db4.properties"; 
 String realPath = this.getServletContext().getRealPath(path); 
 System.out.println("realPath:"+realPath); 
 System.out.println("contextPath:"+this.getServletContext().getContextPath()); 
 InputStreamReader reader = new InputStreamReader(new FileInputStream(realPath),"UTF-8"); 
 Properties props = new Properties(); 
 props.load(reader); 
 String driver = props.getProperty("jdbc.driver"); 
 String url = props.getProperty("jdbc.url"); 
 String username = props.getProperty("jdbc.username"); 
 String password = props.getProperty("jdbc.password"); 
 response.getWriter().println("  WEB-INF    JDBC    db4.properties    "); 
 response.getWriter().println(MessageFormat.format( "driver={0},url={1},username={2},password={3}", 
 driver,url, username, password)); 
 } 
 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { 
 } 
} 
3.servlet 설정(web.xml)

<?xml version="1.0" encoding="UTF-8"?> 
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0"> 
 <display-name>javaReaderFile</display-name> 
 <welcome-file-list> 
 <welcome-file>index.html</welcome-file> 
 <welcome-file>index.htm</welcome-file> 
 <welcome-file>index.jsp</welcome-file> 
 <welcome-file>default.html</welcome-file> 
 <welcome-file>default.htm</welcome-file> 
 <welcome-file>default.jsp</welcome-file> 
 </welcome-file-list> 
 <servlet> 
 <servlet-name>FileReader</servlet-name> 
 <servlet-class>com.xia.fileReader.FileReader</servlet-class> 
 </servlet> 
 <servlet-mapping> 
 <servlet-name>FileReader</servlet-name> 
 <url-pattern>/FileReader</url-pattern> 
 </servlet-mapping> 
</web-app> 

4.테스트

방식 2:리 소스 Bundle 클래스 로 설정 정 보 를 읽 습 니 다.
장점 은 클래스 이름 을 완전히 제한 하 는 방식 으로 자원 을 불 러 온 후 직접 읽 을 수 있 고 비 웹 응용 에서 자원 파일 을 읽 을 수 있다 는 것 이다.
단점:src 아래 자원 파일 만 불 러 오고.properties 파일 만 읽 을 수 있 습 니 다.

/** 
 *                
 * @param propertyName 
 *     : 
 * 1.      resource   ,      
 * PropertiesUtil.getAllMessage("message"); 
 * 2.       
 * PropertiesUtil.getAllMessage("com.test.message"); 
 * @return 
 */ 
public static List<String> getAllMessage(String propertyName) { 
 //       
 ResourceBundle rb = ResourceBundle.getBundle(propertyName.trim()); 
 //           key 
 Enumeration<String> allKey = rb.getKeys(); 
 //   key    value 
 List<String> valList = new ArrayList<String>(); 
 while (allKey.hasMoreElements()) { 
 String key = allKey.nextElement(); 
 String value = (String) rb.getString(key); 
 valList.add(value); 
 } 
 return valList; 
} 
방식 3:ClassLoader 방식 으로 설정 정 보 를 읽 습 니 다.
장점 은 비 웹 응용 프로그램 에서 설정 자원 정 보 를 읽 을 수 있 고 임의의 자원 파일 정 보 를 읽 을 수 있다 는 것 이다.
 단점:src 아래 자원 파일 만 불 러 올 수 있 습 니 다.큰 파일 을 불 러 올 수 없습니다.그렇지 않 으 면 jvm 메모리 가 넘 칠 수 있 습 니 다.

package com.xia.fileReader; 
import java.io.BufferedReader; 
import java.io.IOException; 
import java.io.InputStream; 
import java.io.InputStreamReader; 
import java.util.Properties; 
public class ReadByClassLoader { 
 public static void main(String[] args) throws IOException { 
 readPropFileByClassLoad(); 
 } 
 public static void readPropFileByClassLoad() throws IOException{ 
 //  src  config       db3.properties 
 InputStream in = ReadByClassLoader.class.getClassLoader().getResourceAsStream("config/db3.properties"); 
 BufferedReader br = new BufferedReader(new InputStreamReader(in)); 
 Properties props = new Properties(); 
 props.load(br); 
 for(Object s: props.keySet()){ 
 System.out.println(s+":"+props.getProperty(s.toString())); 
 } 
 } 
} 
방식 4:PropertiesLoaderUtils 도구 클래스

/** 
 * Spring     PropertiesLoaderUtils                         
 *        :        ,       ,     
 */ 
private static void springUtil(){ 
 Properties props = new Properties(); 
 while(true){ 
 try { 
 props=PropertiesLoaderUtils.loadAllProperties("message.properties"); 
 for(Object key:props.keySet()){ 
 System.out.print(key+":"); 
 System.out.println(props.get(key)); 
 } 
 } catch (IOException e) { 
 System.out.println(e.getMessage()); 
 } 
 try {Thread.sleep(5000);} catch (InterruptedException e) {e.printStackTrace();} 
 } 
} 
속성 수정

/** 
 *       Map,  properties   
 * 
 * @param fileName 
 *    (  resource     ),     
 * @param keyValueMap 
 *    Map 
 */ 
 public static void updateProperties(String fileName,Map<String, String> keyValueMap) { 
 //getResource     utf-8          ,            ,           ,  , 
 //                ,  ,   URLDecoder decode      ,              。 
 String filePath = PropertiesUtil.class.getClassLoader().getResource(fileName).getFile(); 
 Properties props = null; 
 BufferedWriter bw = null; 
 try { 
 filePath = URLDecoder.decode(filePath,"utf-8"); 
 log.debug("updateProperties propertiesPath:" + filePath); 
 props = PropertiesLoaderUtils.loadProperties(new ClassPathResource(fileName)); 
 log.debug("updateProperties old:"+props); 
 //        
 bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(filePath))); 
 props.clear();//        
 for (String key : keyValueMap.keySet()) 
 props.setProperty(key, keyValueMap.get(key)); 
 log.debug("updateProperties new:"+props); 
 props.store(bw, ""); 
 } catch (IOException e) { 
 log.error(e.getMessage()); 
 } finally { 
 try { 
 bw.close(); 
 } catch (IOException e) { 
 e.printStackTrace(); 
 } 
 } 
 } 
총결산
위 에서 말 한 것 은 소 편 이 소개 한 자바 웹 에서 프로필 을 읽 는 네 가지 방법 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.소 편 은 바로 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기