/**
* @param args
*/
public static void main(String[] args) {
XmlReaderW3C xmlReaderW3C = new XmlReaderW3C();
Application application = new Application();
Map<String, String> map = new HashMap<String, String>();
map.put("jvm", "-Xms256m");
map.put("port", "12888");
application.setId(System.currentTimeMillis() + "");
application.setName("MUSEһ������");
application.setParams(map);
// xmlReaderW3C.addApp(application);
// xmlReaderW3C.removeApp(application);
// List<Application> list = xmlReaderW3C.getAppList();
// list.size();
// Application app = xmlReaderW3C.getAppById("1344067790421");
// app.getParams();
Server server;
try {
server = xmlReaderW3C.getServer();
server.getDeployPath();
} catch (Exception e) {
}
}