1 public void init(ServletConfig config) throws ServletException {
2 try {
3 String xmlPath = getServletContext().getRealPath("/")
4 + "\\WEB-INF\\classes\\components\\leadSQL.xml";
5 SAXReader reader = new SAXReader();
6 Document doc = reader.read(new File(xmlPath));
7 String aicRegSQL = doc.valueOf("/config/SQL/@reg");
8 AicConstant.setRegSQL(aicRegSQL);
9 ...
10 ..
11 .
12
13 }catch(DocumentException e){
14 e.printStackTrace();
15 throw new RuntimeException("系统启动初试化失败");
16 }