Symfony2 - 使用Controller实现自动装配服务

时间:2015-11-22 17:13:23

标签: php symfony

我能够使用Symfony2的新autowire功能将服务注入服务。但是,我无法将服务注入控制器。我不做什么/做错了什么?

这是我的services.yml文件:

int [] arr = {1, 3, Integer.MAX_VALUE, 4, Integer.MAX_VALUE, 5, Integer.MAX_VALUE};

    for (int dist : arr) {
        System.out.print(((dist == Integer.MAX_VALUE) ? -1 : dist) + " ");
    }

这是我的ServiceConsumerDemo:

services:
    home_controller:
        class:  AppBundle\Controller\HomeController
        autowire:  true

这是ServiceDemo:

namespace AppBundle\Services;

class ServiceConsumerDemo {

    private $serviceDemo;

    public function __construct(ServiceDemo $serviceDemo) {
        $this->serviceDemo = $serviceDemo;
    }

    public function getMessage(){
        return $this->serviceDemo->helloWorld();
    }
}

这是HomeController(可以工作):

namespace AppBundle\Services;

class ServiceDemo 
{    
    public function helloWorld(){
        return "hello, world!";
    }
}

这是不起作用的HomeController

namespace AppBundle\Controller;

use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;


class HomeController extends Controller
{
    /**
     * @Route("/")
     *
     */
    public function indexAction(Request $request)
    {
        $message[0] = $this->get('service_consumer_demo')->getMessage();
        return new \Symfony\Component\HttpFoundation\JsonResponse($message);
    }
}

这是抛出的错误:

  

捕获致命错误:参数1传递给   AppBundle \ Controller \ HomeController :: __ construct()必须是一个实例   AppBundle \ Services \ ServiceConsumerDemo,没有给出,

如何访问Controller中的服务?我知道我需要将控制器声明为服务。所以我在services.yml文件中提到控制器。还有什么我需要做的吗?

3 个答案:

答案 0 :(得分:1)

Symfony 3.3+ 2017年5月更新!

Symfony 3.3允许本地方式接近这一点。

# app/config/services.yml
services:
    _defaults:
        autowire: true # all services in this config are now autowired

    App\: # no more manual registration of similar groups of services 
        resource: ../{Controller}

这意味着App\Controller\SomeController默认情况下已自动装配,可在app/Controller/SomeController.php文件中找到。

您可以阅读:

感谢Symfony 2.8+中的自动装配,我可以创建捆绑包,即使对于控制器也可以添加自动装配:Symplify/ControllerAutowire

您可以在the article中了解详情。

用法很简单:

class YourController
{
    public function __construct(SomeDependency $someDependency)
    {
        // ...
    }
}

不需要更多。

答案 1 :(得分:1)

默认情况下,控制器不被视为服务,因此您无法使用它们进行自动装配。

但是,这是一个足够简单的修复 - 在上添加@Route注释(即不在类中的操作方法上),并附带服务定义。

来自documentation

  

控制器类上的@Route注释也可用于分配   控制器类到服务,以便控制器解析器将   通过从DI容器中获取控制器来实例化控制器   而不是调用新的PostController()本身。

例如:

/** 
 * @Route(service="app_controller") 
 */
class AppController extends Controller
{

    private $service;

    public function __construct(SomeService $service)
    {
        $this->service = $service;
    }

    /** @Route("/") */
    public function someAction()
    {
        $this->service->doSomething();
    }

}

并在您的配置中:

app_controller:
    class:  AppBundle\Controller\AppController
    autowire: true

答案 2 :(得分:-1)

您没有将服务传递给services.yml中的控制器。将其更改为:

services:
    service_demo:
        class:  AppBundle\Services\ServiceDemo
    service_consumer_demo:
        class:  AppBundle\Services\ServiceConsumerDemo
        autowire:   true
    home_controller:
        class:  AppBundle\Controller\HomeController
        autowire:  true
        arguments:
            service: "@service_consumer_demo"