找不到服务“ fos_elastica.finder.app.user”

时间:2019-01-12 17:16:25

标签: symfony elastica

Symfony找不到fos_elastica的服务

Service "fos_elastica.finder.app.user" not found: even though it exists in the app's container, the container inside "App\Controller\DevController" is a smaller service locator that only knows about the "doctrine", "form.factory", "http_kernel", "parameter_bag", "request_stack", "router", "security.authorization_checker", "security.csrf.token_manager", "security.token_storage", "session" and "twig" services. Unless you need extra laziness, try using dependency injection instead. Otherwise, you need to declare it using "DevController::getSubscribedServices()".

我的配置

# Read the documentation: https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/master/Resources/doc/setup.md
fos_elastica:
    clients:
        default: { host: localhost, port: 9200 }
#    indexes:
#        app: ~
    indexes:
        app:
            client: default
            types:
                user:
                    properties:
                        username: ~
#                    mappings:
#                        email: ~
                    persistence:
                        # the driver can be orm, mongodb, phpcr or propel
                        # listener and finder are not supported by
                        # propel and should be removed
                        driver: orm
                        model: App\Entity\User
                        provider: ~
                        listener: ~
                        finder: ~

我的控制器:

    /**
     * @Route("/search")
     */
    public function searchElastic(){
        /** var array of App\Entity\User */
        $finder = $this->container->get('fos_elastica.finder.app.user');
        return new response('N/A');
    }

命令php bin/console fos:elastica:populate没有引发任何错误,并且在phpstorm中没有突出显示(这意味着phpstorm找到了它)

请帮助我。

1 个答案:

答案 0 :(得分:0)

您应该像这样使用依赖注入:

在控制器类use中添加use FOS\ElasticaBundle\Manager\RepositoryManagerInterface;语句,然后您的操作应如下所示:

/**
 * @Route("/search")
 */
public function searchElastic(RepositoryManagerInterface $finder) {

    $someResult = $finder->getRepository(User::class)->find(...);
    return new response('N/A');
}