我正在尝试将zf2 beta3与doctrine mongo odm(https://github.com/doctrine/DoctrineMongoODMModule)集成,但没有成功。
如何安装和配置?
答案 0 :(得分:6)
我正在做同样的事情。这样的事情应该有效:
下载该模块,并将其放入供应商文件夹中。
在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();
}
答案 1 :(得分:3)
我将完成将zf2与mongodb doctrine odm整合的步骤
1.下载mongodb doctrine odm模块并放在供应商目录中或从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复制文件,将路径放在/ 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 / ext。根据您在php.ini中下载的名称文件扩展名“extension = php_mongo-x.x.x-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.Persist it,例如在你的控制器中
<?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();
}
}
答案 2 :(得分:0)
现在默认配置已更改,您是否可以显示更新的方法以使其在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”类