1 package com.apple.sqm.dnwd;
2
3 import org.apache.commons.logging.Log;
4 import org.apache.commons.logging.LogFactory;
5 import org.springframework.context.support.ClassPathXmlApplicationContext;
6
7 public class DNWDServer {
8
9 /**
10 * @param args
11 */
12 private static Log log = LogFactory.getLog(DNWDServer.class);
13
14 public static void main(String[] args) throws Exception {
15 log.info("Detect non-working-day start");
16 new ClassPathXmlApplicationContext("applicationContext.xml");
17 }
18 }