条令ODM zf2模块的示例工作配置



请任何人提供一个驱动程序配置示例,用于读取Application/src/Application/Document/…中的文档注释。。。。创建了这个但仍然是条令模块odm:schema:create表示创建了所有集合,但在我的数据库中没有集合

    <?php
return array(
    'doctrine' => array(
        'connection' => array(
            'odm_default' => array(
                'server' => 'localhost',
                'port' => '27017',
//                'user'      => null,
//                'password'  => null,
                'dbname' => 'yehja',
//                'options'   => array()
            ),
        ),
        'configuration' => array(
            'odm_default' => array(
//                'metadata_cache'     => 'array',
//
//                'driver'             => 'odm_default',
//
//                'generate_proxies'   => true,
//                'proxy_dir'          => 'data',
//                'proxy_namespace'    => 'DoctrineMongoODMModuleProxy',
//
//                'generate_hydrators' => true,
//                'hydrator_dir'       => 'data',
//                'hydrator_namespace' => 'DoctrineMongoODMModuleHydrator',
//
//                'default_db'         => null,
//
//                'filters'            => array()  // array('filterName' => 'BSONFilterClass')
            )
   // /   // ),
    //    'driver' => array(
    //        'odm_default' => array(
    //        //   'drivers' => array('Appl   
   //         )
        ),
        'driver' => array(
            'class' => 'DoctrineODMMongoDBMappingDriverAnnotationDriver',
            'namespace' => 'ApplicationDocument',
            'paths' => array('module/Application/src/Application/Document'),
        ),
        'documentmanager' => array(
            'odm_default' => array(
//                'connection'    => 'odm_default',
//                'configuration' => 'odm_default',
//                'eventmanager' => 'odm_default'
            )
        ),
        'eventmanager' => array(
            'odm_default' => array(
                'subscribers' => array()
            )
        ),
    ),
);```

正在使用的模块->https://github.com/doctrine/DoctrineMongoODMModule

这些作品:

文件:config/autoload/module.proctrine mongo odm.local.php

<?php

DoctrineODMMongoDBMappingDriverAnnotationDriver::registerAnnotationClasses();
return array(
    'doctrine' => array(
        'connection' => array(
            'odm_default' => array(
                'server' => 'localhost',
                'port' => '27017',
//                'user'      => null,
//                'password'  => null,
                'dbname' => 'yehja',
//                'options'   => array()
            ),
        ),
        'configuration' => array(
            'odm_default' => array(
//                'metadata_cache'     => 'array',
//
//                'driver'             => 'odm_default',
//
//                'generate_proxies'   => true,
//                'proxy_dir'          => 'data',
//                'proxy_namespace'    => 'DoctrineMongoODMModuleProxy',
//
//                'generate_hydrators' => true,
//                'hydrator_dir'       => 'data',
//                'hydrator_namespace' => 'DoctrineMongoODMModuleHydrator',
//
//                'default_db'         => null,
//
//                'filters'            => array()  // array('filterName' => 'BSONFilterClass')
            )
   // /   // ),
    //    'driver' => array(
    //        'odm_default' => array(
    //        //   'drivers' => array('Appl   
   //         )
        ),
        'documentmanager' => array(
            'odm_default' => array(
//                'connection'    => 'odm_default',
//                'configuration' => 'odm_default',
//                'eventmanager' => 'odm_default'
            )
        ),
        'eventmanager' => array(
            'odm_default' => array(
                'subscribers' => array()
            )
        ),
    ),
);

文件:module/Application/config/module.config.php添加这些行

'doctrine' => array(
        'driver' => array(
            __NAMESPACE__ . '_driver' => array(
                'class' => 'DoctrineODMMongoDBMappingDriverAnnotationDriver',
                'paths' => array(__DIR__ . '/../src/' . __NAMESPACE__ . '/Document')
            ),
            'odm_default' => array(
                'drivers' => array(
                    __NAMESPACE__ . 'Document' => __NAMESPACE__ . '_driver'
                )
            )
        )
    )

我想你从这个问题中得到了配置的想法,但从那以后格式发生了变化。下面是我的一个(dibber是应用程序的名称,是的,它是PHP 5.4数组):

'driver' => [
    'dibber' => [
        'class' => 'DoctrineODMMongoDBMappingDriverAnnotationDriver',
    ],
    'odm_default' => [
        'drivers' => [
            'DibberDocument' => 'dibber'
        ]
    ]
],

这基本上意味着DibberDocument是要在其中使用注释驱动程序的命名空间。所以对你来说,它将是ApplicationDocument

相关内容

  • 没有找到相关文章

最新更新