5

我正在尝试以这种方式将 Symfony 2 与 MongoDB 连接起来:

  1. 在 方法中注册DoctrineMongoDBBundleAppKernel::registerBundles
  2. 设置“ doctrine_mongo_db”配置(见下文config.yml
  3. doctrine.odm.mongodb.document_manager从正在运行的容器中 获取 ' HelloController'

当我尝试运行应用程序时,会抛出MongoConnectionException

谁能帮我解决这个问题?


应用内核.php

public function registerBundles()
{
        $bundles = array(
            new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
            new Symfony\Bundle\TwigBundle\TwigBundle(),
            new Symfony\Bundle\DoctrineMongoDBBundle\DoctrineMongoDBBundle(),
            new Sensio\HelloBundle\HelloBundle()
        );

        return $bundles;
    }

配置.yml

framework:
    charset:       UTF-8
    router:        { resource: "%kernel.root_dir%/config/routing.yml" }
    templating:    { engines: ['twig'] } 

## Doctrine Configuration

doctrine_mongo_db:
    server: mongodb://root:root@192.168.0.111:27017
    default_database: test
    options: { connect: true }
    mappings:
        HelloBundle: { type: annotation, dir: Document }

# Twig Configuration

twig:
    debug:            %kernel.debug%
    strict_variables: %kernel.debug%

你好控制器.php

/* @var $dm \Doctrine\ODM\MongoDB\DocumentManager */
$dm = $this->get('doctrine.odm.mongodb.document_manager');

例外(第 96 行)

connecting to failed: Transport endpoint is not connected

in ~/vendor/doctrine-mongodb/lib/Doctrine/MongoDB/Connection.php line 96 »

93.    if ($this->server) {
94.        $this->mongo = new \Mongo($this->server, $this->options);
95.    } else {
96.        $this->mongo = new \Mongo();
97.    }
4

1 回答 1

1

问题在于 DoctrineMongoDBBundle 配置加载。修复(https://github.com/fabpot/symfony/pull/740)应该很快被合并。

现在你可以使用下面的固定方法。

public function load(array $configs, ContainerBuilder $container)
{
    $mergedConfig = array();
    foreach ($configs as $config) {
        $mergedConfig = array_merge_recursive($mergedConfig, $config);
    }

    $this->doMongodbLoad($mergedConfig, $container);
}
于 2012-06-23T22:19:42.947 回答