在Silex中声明多个Doctrine EntityManagers时如何使用`orm.ems`?

时间:2017-10-05 13:46:22

标签: php doctrine-orm silex

我正在编写PHP Silex应用程序,我想使用多个OMS实体管理器。我已按照Silex\Provider\DoctrineServiceProvider的说明添加多个命名数据库

$dbs_options = [
    "base" => [
        "driver" => "pdo_sqlite",
        "path" => "C:\users\russells\workspaces\turlesystems\database\dev.sqlite"
    ]
];

$app -> register(new DoctrineServiceProvider, ['dbs.options' => $dbs_options]);

我已经配置了EntityManagers:

$mappings =  [
    [
        'type' => 'annotation',
        'namespace' => 'Turtle\Model\Entity',
        'path' => "c:\users\russells\workspaces\fisheagle\Turtle\Model\Entity",
        'use_simple_annotation_reader' => false
    ]
];

$app -> register(new DoctrineOrmServiceProvider, [
        'orm.proxies_dir' => Utils::joinPaths($app -> config -> appRoot, 'running', 'proxies'),
        'orm.em.options' => [
            'mappings' => $mappings
        ]
    ]
);

$app['orm.ems.default'] = 'basedb';
$app['orm.ems.options'] = [
    'basedb' => [
        'connection' => 'base',
        'mappings' => $app['orm.em.options']['mappings']
    ]
];

然后我尝试在存储库上执行findAll()操作并且我的应用程序崩溃,或者说显示状态存在异常,但我没有在日志中看到一个,try ... catch没有显示任何内容

dump("Retrieve Entity Manager");
$em = $this -> app['orm.ems']['basedb'];
dump("Get Repo");
$repo = $em -> getRepository("\Turtle\Model\Entity\WebsiteDomain");
dump("Get all items");
$items = $repo -> findAll();
dump("Display items");
dump($items);

enter image description here

我正在使用内置Web服务器的PHP运行应用程序,日志如下:

PHP 7.1.8 Development Server started at Thu Oct  5 14:42:32 2017
Listening on http://0.0.0.0:10000
Document root is C:\Users\russells\workspaces\turtlesystems\fisheagle\web\local
Press Ctrl-C to quit.
[Thu Oct  5 14:43:43 2017] 127.0.0.1:65116 [200]: /
[Thu Oct  5 14:43:45 2017] 127.0.0.1:65117 Invalid request (Unexpected EOF)
[Thu Oct  5 14:43:45 2017] 127.0.0.1:65119 Invalid request (Unexpected EOF)

我很难过。如果我在配置中只使用一个EM,那么我的应用程序可以正常运行,只有在我尝试使用orm.ems选项时才会发生。是否有一些我很想念的事情。

我正在使用PHP 7.1和Silex 2.这段代码在Windows上运行,我还没有在Linux上试过,但考虑到一个EM工作,我感觉这不是问题。

1 个答案:

答案 0 :(得分:0)

我已解决了我的问题。它原来是数据库的路径,因为我正在使用“正在逃避字符,这意味着无法找到数据库文件。

我意识到我没有在调试模式下运行后发现这一点,当我这样做时,我收到了我需要的错误消息。我把它添加到我的代码中:

$app['debug'] = true