symfony2 custom_provider

时间:2011-10-19 21:01:59

标签: symfony propel

我一直试图从推动这个例子来配置自定义安全提供程序

http://www.propelorm.org/cookbook/symfony2/the-symfony2-security-component-and-propel.html

然而我总是得到这个错误

ServiceNotFoundException: The service "security.authentication.manager" has a dependency on a non-existent service "acme.secured.security.provider"

似乎没有加载services.xml但我无法确定。还有其他人遇到过类似的问题吗?我是symfony2的新手,有人可以建议最好的地方开始调试吗?

1 个答案:

答案 0 :(得分:0)

所以导入它。在你的app / config.yml中:

imports:
    acme_bundle:
        resource: "@AcmeSecuredBundle/Resources/config/services.xml"

您可以在the documentation中了解有关导入服务的更多信息。