EJBFactory2

来源:互联网 发布:图纸打印软件 编辑:程序博客网 时间:2024/05/16 14:09

 public static EjbCallFactory getInstance()
    {
        if (instance == null)
        {
            instance = new EjbCallFactory();
        }
        return instance;
    }
   
    /**
     * 获取初始化的Context
     *
     * @throws BossException
     */
    private void getInitialContext() throws Exception
    {
        if (initContext == null)
        {
            String url = null;
            url = KEY_URL;
            getInitialContext(url);
        }
       
    }

原创粉丝点击