シンタックス・ハイライトのテスト

 public static void main(String[] args){

        //コンテナの初期化
        SingletonS2ContainerFactory.init();

        try{
            JdbcManager m = SingletonS2Container.getComponent(JdbcManager.class);
            Long cnt = m.from(Employee.class).getCount();
            System.out.println("カウント数:" + cnt);
        }finally{

            // コンテナの削除
            SingletonS2ContainerFactory.destroy();

        }
    }