dpvmjk0479 2011-11-17 11:56
浏览 70
已采纳

Doctrine2 + Symfony2:如何将实体和映射存储在单独的包中?

I want to decouple my application so I can use my entities anywhere whatever their datasource might be.

So I've put my entities in

DataAccessLayerBundle\Entity

and mappings in

DataProvider\DataBaseBundle\Resources\config\doctrine

Issue:

When I try the following command:

php app\console doctrine:schema:create

to build my database, I get the following error:

Warning: class_parents(): Class (..)\DataProvider\DatabaseBundle\Entity\BaseEntity does not exist and could not be loaded in (...)\vendor\doctrine\lib\D octrine\ORM\Mapping\ClassMetadataFactory.php line 223

The question is: why the hell is it trying to look for classes in the DataProvider\DatabaseBundle\Entity namespace, when I explicitly defined it otherwise in the mapping files? Example fragment of mapping file:

<mapped-superclass name="(...)\DataAccessLayerBundle\Entity\Base\BaseEntity">

I've noticed symfony/doctrine is just looking up those classes based off xml filenames (e.g. BaseEntity.orm.xml) and current bundle namespace.

Is there any way I can decouple things like I wanted, or am I stuck with defining entities and their mapping in the same bundle?

  • 写回答

1条回答 默认 最新

  • douju1365 2011-11-23 11:32
    关注

    As it turned out from the docs, it is possible to have entities and mappings in separate bundles. To do so, you have to configure doctrine in the main config as in following example:

    orm:
        auto_generate_proxy_classes: %kernel.debug%
        ...
        entity_managers:
          default:
            mappings:
              (...)DataAccessLayerBundle:
                type: xml
                dir: ../DataProvider/DatabaseBundle/Resources/config/doctrine
    

    I still had to move my BaseEntity class from Entity\Base to Entity folder for this to work, but this is a little sacrifice compared to the flexibility gained.

    Config reference: http://symfony.com/doc/2.0/reference/configuration/doctrine.html

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置