resin.conf에 아래와 같이 추가해주던가....
<system-property javax.xml.parsers.DocumentBuilderFactory="org.apache.xerces.jaxp.DocumentBuilderFactoryImpl" />
<system-property javax.xml.parsers.SAXParserFactory="org.apache.xerces.jaxp.SAXParserFactoryImpl" />
<system-property javax.xml.transform.TransformerFactory="org.apache.xalan.processor.TransformerFactoryImpl" />
<system-property org.xml.sax.driver="org.apache.xerces.parsers.SAXParser" />
아니면 다음과 같이 리스너를 구현한다.
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
public class XmlTranslateListener implements ServletContextListener {
public void contextInitialized(ServletContextEvent arg0) {
System.setProperty("javax.xml.parsers.DocumentBuilderFactory", "org.apache.xerces.jaxp.DocumentBuilderFactoryImpl");
System.setProperty("javax.xml.parsers.SAXParserFactory","org.apache.xerces.jaxp.SAXParserFactoryImpl");
System.setProperty("javax.xml.transform.TransformerFactory","org.apache.xalan.processor.TransformerFactoryImpl");
System.setProperty( "org.xml.sax.driver", "org.apache.xerces.parsers.SAXParser" );
}
public void contextDestroyed(ServletContextEvent arg0) {
// TODO Auto-generated method stub
}
}
'JAVA > Framework' 카테고리의 다른 글
Spring MVC 에서 로직없이 직접 View 로 이동해야 할 경우 (0) | 2012.10.18 |
---|---|
struts2 에서 iterator 에 , 붙이면서 마지막 콤마 안찍기.... (0) | 2008.12.04 |
[ibatis + spring] execute batch (0) | 2007.07.09 |
[펌] iBatis의 SqlMaps 사용 시 IN 절 처리 (0) | 2007.06.26 |
으아... 짱난ㄴ다... 삽질삽질 ... (0) | 2005.05.12 |