0

このエラーが発生しました

MappingException: The class 'Telnet\IPBBridgeBundle\Entity\Member' was not found in the chain configured namespaces Telnet\CSSBundle\Entity

エンティティを含む 2 つのバンドルと、doctrine 構成へのいくつかの接続があります。

orm:
    default_entity_manager: site
    entity_managers:
        site:
            connection: siteConfig
            mappings:
                CSSBundle: ~
        forum:
            connection: forumConfig
            mappings:
                IPBBridgeBundle: ~

そしてこれをプロバイダーに

providers:
    main:
        entity: { class: Telnet\IPBBridgeBundle\Entity\Member, property: username }

私が間違っていることは何ですか?

4

1 に答える 1

0

SecurityBundleはデフォルトのEntityManagerを使用し、UserInterfaceを実装するEntityはデフォルトのEntityManagerで処理する必要があります。

于 2012-10-26T05:25:50.307 に答える