| 12345678910111213141516171819 |
- package xin.glue.nui.G.G02;
- import xin.glue.nui.Test.TcGenerator;
- import com.posdata.glue.context.PosContext;
- import com.posdata.glue.util.log.PosLog;
- import com.posdata.glue.util.log.PosLogFactory;
- public class SendTest {
- static PosLog logger = PosLogFactory.getLogger(SendTest.class);
- public static void main(String[] args) {
- try {
- PosContext.getBeanFactory().getBeanObject("scheduler1");
- } catch (Exception e) {
- // TODO: handle exception
- logger.logError(e.getMessage(), e);
- }
- }
- }
|