use of org.eweb4j.util.xml.XMLWriter in project eweb4j-framework by laiweiwei.
the class EWeb4JConfig method createStartXml.
public static void createStartXml(String path, ConfigBean cb) throws Exception {
XMLWriter writer = BeanXMLUtil.getBeanXMLWriter(new File(ConfigConstant.CONFIG_BASE_PATH() + path), cb);
writer.setBeanName("eweb4j");
writer.setClass("eweb4j", ConfigBean.class);
writer.write();
}
Aggregations