96bc6f1a5b131ae55dc9ab1e423a3ab1597cbd40.svn-base 504 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 SendTest {
  7. static PosLog logger = PosLogFactory.getLogger(SendTest.class);
  8. public static void main(String[] args) {
  9. try {
  10. PosContext.getBeanFactory().getBeanObject("scheduler1");
  11. } catch (Exception e) {
  12. // TODO: handle exception
  13. logger.logError(e.getMessage(), e);
  14. }
  15. }
  16. }