adb71031363eda3bde1f03f660b4e352b89d74ec.svn-base 517 B

12345678910111213141516171819
  1. package xin.glue.nui.G.G02;
  2. import xin.glue.nui.Test.TcGenerator;
  3. import com.posdata.glue.context.PosContext;
  4. import com.posdata.glue.util.log.PosLog;
  5. import com.posdata.glue.util.log.PosLogFactory;
  6. public class SchedulerTest {
  7. static PosLog logger = PosLogFactory.getLogger(SchedulerTest.class);
  8. public static void main(String[] args) {
  9. try {
  10. PosContext.getBeanFactory().getBeanObject("scheduler");
  11. } catch (Exception ex) {
  12. // TODO: handle exception
  13. logger.logError(ex.getMessage(), ex);;
  14. }
  15. }
  16. }