Symfony doctrine auto_mapping Unrecognized

后端 未结 2 1185
鱼传尺愫
鱼传尺愫 2020-12-16 12:22

I have added SonataUserBundle and it is giving error

config.yml

doctrine: 
    orm:
        auto_generate_proxy_classes: \"%kernel.debug%\"
        n         


        
相关标签:
2条回答
  • 2020-12-16 12:41

    You are mixing shortened and full configuration.

    If you just want to use the default entity manager then you can place everything under the orm key (the shortened config). This will be remapped so that it is under doctrine.orm.entity_managers.default by the bundle extension.

    If, however, you want to chaneg the name of the entity manager or use multiples then you would need to use the full configuration specifying each entity manager.

    Shortened Config

    doctrine: 
        orm:
            auto_generate_proxy_classes: "%kernel.debug%"
            naming_strategy: doctrine.orm.naming_strategy.underscore
            auto_mapping: true
            mappings:
                ApplicationSonataUserBundle: ~
                SonataUserBundle: ~
    

    Full Config

    doctrine: 
        orm:
            auto_generate_proxy_classes: "%kernel.debug%"
            entity_managers:
                default:
                    naming_strategy: doctrine.orm.naming_strategy.underscore
                    auto_mapping: true
                    mappings:
                        ApplicationSonataUserBundle: ~
                        SonataUserBundle: ~
    
    0 讨论(0)
  • 2020-12-16 12:53

    Do you think it is necessary to configure the mappings manually if you set auto_mapping to true?

    Doctrine's auto_mapping feature loads annotation configuration from the Entity/ directory of each bundle and looks for other formats (e.g. YAML, XML) in the Resources/config/doctrine directory.

    http://symfony.com/doc/current/reference/configuration/doctrine.html#custom-mapping-entities-in-a-bundle

    0 讨论(0)
提交回复
热议问题