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 }

 

相关文章:

  • 2021-10-23
  • 2021-09-27
  • 2021-12-10
  • 2021-05-24
  • 2021-05-02
  • 2021-11-25
  • 2022-02-24
  • 2021-05-05
猜你喜欢
  • 2021-10-08
  • 2021-08-03
  • 2021-12-12
  • 2021-10-02
  • 2021-10-13
  • 2021-10-08
  • 2021-12-30
相关资源
相似解决方案