我正在尝试将 zf2 beta3 与学说 mongo odm (https://github.com/doctrine/DoctrineMongoODMModule)集成,但没有成功。
如何安装和配置它?
我正在尝试将 zf2 beta3 与学说 mongo odm (https://github.com/doctrine/DoctrineMongoODMModule)集成,但没有成功。
如何安装和配置它?
我正在做同样的事情。像这样的东西应该工作:
下载该模块,并将其放在您的供应商文件夹中。
在 application.config.php 中添加模块
复制 module.doctrine_mongodb.config.php.dist 到 /config/autoload
使用您自己的设置编辑该配置文件
将该配置文件的名称更改为 module.doctrine_mongodb.local.config.php
在您的控制器中创建一个“setDocumentManager”方法,如下所示:
protected $documentManager;
public function setDocumentManager(DocumentManager $documentManager)
{
$this->documentManager = $documentManager;
return $this;
}
将以下内容放入模块的 DI 配置中:
'Application\Controller\[YourControllerClass]' => array(
'parameters' => array(
'documentManager' => 'mongo_dm'
)
),
根据 Doctrine 2 文档创建 Document 类,以及此问答中的说明:Annotations Namespace not loaded DoctrineMongoODMModule for Zend Framework 2
最后,像这样使用 dm:
public function indexAction()
{
$dm = $this->documentManager;
$user = new User();
$user->set('name', 'testname');
$user->set('firstname', 'testfirstname');
$dm->persist($user);
$dm->flush();
return new ViewModel();
}
我将给出我为将 zf2 与 mongodb 学说 odm 集成所做的步骤
1.下载mongodb学说odm模块,放到vendor目录下或者从github克隆
cd /path/to/project/vendor
git clone --recursive https://github.com/doctrine/DoctrineMongoODMModule.git
2.从 /path/to/project/vendor/DoctrineMongoODMModule/config/module.doctrine_mongodb.config.php.dist 复制文件,放在你的 path/to/your/project/config/autoload/ 并重命名为 module.doctrine_mongodb .local.config.php
3.编辑你的module.doctrine_mongodb.local.config.php。更改默认数据库
'config' => array(
// set the default database to use (or not)
'default_db' => 'myDbName'
),
更改连接参数
'connection' => array(
//'server' => 'mongodb://<user>:<password>@<server>:<port>',
'server' => 'mongodb://localhost:27017',
'options' => array()
),
更改驱动程序选项
'driver' => array(
'class' => 'Doctrine\ODM\MongoDB\Mapping\Driver\AnnotationDriver',
'namespace' => 'Application\Document',
'paths' => array('module/Application/src/Application/Document'),
),
添加代理和 hydratros 配置
'mongo_config' => array(
'parameters' => array(
'opts' => array(
'auto_generate_proxies' => true,
'proxy_dir' => __DIR__ . '/../../module/Application/src/Application/Document/Proxy',
'proxy_namespace' => 'Application\Model\Proxy',
'auto_generate_hydrators' => true,
'hydrator_dir' => __DIR__ . '/../../module/Application/src/Application/Document/Hydrators',
'hydrator_namespace' => 'Application\Document\Hydrators',
'default_db' => $settings['config']['default_db'],
),
'metadataCache' => $settings['cache'],
)
),
4.在 /path/to/project/module/Application/src/Application/ 中创建一个名为“Document”的目录,您的文档映射在哪里,在“Document”目录中,创建“Proxy”和“Hydrators”目录。
5.编辑您的 /path/to/project/config/application.config.php 并将“DoctrineMongoODMModule”添加到模块数组
6.确保您已安装 mongo php 扩展,否则在http://www.php.net/manual/en/mongo.installation.php#mongo.installation.windows下载并将其复制到您的扩展 php 目录,通常是 /php /分机。根据您在 php.ini 中下载的名称文件扩展名添加扩展行“extension=php_mongo-xxx-5.x-vc9.dll”。
7.在你的文档目录应用模块中创建一个文档映射User.php。
<?php
namespace Application\Document;
use Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
/** @ODM\Document */
class User
{
/** @ODM\Id */
private $id;
/** @ODM\Field(type="string") */
private $name;
/**
* @return the $id
*/
public function getId() {
return $this->id;
}
/**
* @return the $name
*/
public function getName() {
return $this->name;
}
/**
* @param field_type $id
*/
public function setId($id) {
$this->id = $id;
}
/**
* @param field_type $name
*/
public function setName($name) {
$this->name = $name;
}
}
8.坚持它,例如在你的控制器中
<?php
namespace Application\Controller;
use Zend\Mvc\Controller\ActionController,
Zend\View\Model\ViewModel,
Application\Document\User;
class IndexController extends ActionController
{
public function indexAction()
{
$dm = $this->getLocator()->get('mongo_dm');
$user = new User();
$user->setName('Bulat S.');
$dm->persist($user);
$dm->flush();
return new ViewModel();
}
}
现在默认配置已经改变,你能展示一个更新的方法来让它在 ZF2 中工作吗?
<?php
return array(
'doctrine' => array(
'connection' => array(
'odm_default' => array(
'server' => 'localhost',
'port' => '27017',
'user' => null,
'password' => null,
'dbname' => 'user',
'options' => array()
),
),
'configuration' => array(
'odm_default' => array(
'metadata_cache' => 'array',
'driver' => 'odm_default',
'generate_proxies' => true,
'proxy_dir' => 'data/DoctrineMongoODMModule/Proxy',
'proxy_namespace' => 'DoctrineMongoODMModule\Proxy',
'generate_hydrators' => true,
'hydrator_dir' => 'data/DoctrineMongoODMModule/Hydrator',
'hydrator_namespace' => 'DoctrineMongoODMModule\Hydrator',
'default_db' => null,
'filters' => array() // array('filterName' => 'BSON\Filter\Class')
)
),
'driver' => array(
'odm_default' => array(
'drivers' => array()
)
),
'documentmanager' => array(
'odm_default' => array(
'connection' => 'odm_default',
'configuration' => 'odm_default',
'eventmanager' => 'odm_default'
)
),
'eventmanager' => array(
'odm_default' => array(
'subscribers' => array()
)
),
),
);
当前收到错误:在链配置的命名空间中找不到类 'Application\Document\User'