Symfony 4 - controllers in two directories

时光总嘲笑我的痴心妄想 提交于 2020-07-09 08:51:11

问题


In my application, I use Symfony 4. I want Symfony to search for controllers in two directories: A and B. I found something like this:

controllers:
    resource: '../src/DirectoryA/Controller/'
    type:     annotation

, but it only works for one directory. How can I have Symfony to search for controllers in two directories?

Regards


回答1:


In your config/services.yaml

App\DirectoryA\Controller\: # assuming you have namespace like that
    resource: '../src/DirectoryA/Controller'
    tags: ['controller.service_arguments']
App\DirectoryB\Controller\: # assuming you have namespace like that
    resource: '../src/DirectoryB/Controller'
    tags: ['controller.service_arguments']

This will add next directory for service arguments. Thats answers your questions based In directory, what you have posted is routing file, in there would be similiar

controllers_a:
    resource: '../src/DirectoryA/Controller/'
    type:     annotation
controllers_b:
    resource: '../src/DirectoryB/Controller/'
    type:     annotation



回答2:


The accepted answer is of course completely correct.

However, once you move from having one controller directory to multiple directories, updating your services.yaml file can be a bit of a pain. Even having to have directories specifically for controllers can be limiting.

Here is an alternate approach which allows creating controllers wherever you want and automatically tagging them.

Start with an empty controller interface for tagging.

interface ControllerInterface {}

Now have all your controllers implement the interface

class Controller1 implements ControllerInterface { ...
class Controller2 implements ControllerInterface { ...

And then adjust the kernel to automatically tag all your controller interface classes with the controller tag.

# src/Kernel.php
protected function build(ContainerBuilder $container)
{
    $container->registerForAutoconfiguration(ControllerInterface::class)
        ->addTag('controller.service_arguments')
    ;
}

And presto. You can create your controllers wherever you want with nothing in services.yaml.

Update: If you would like to avoid editing Kernel.php then you can use the _instanceof functionality in your services.yaml file.

#config/services.yaml
services:
    _instanceof:
        App\Contract\ControllerInterface:
            tags: ['controller.service_arguments']

Another Update: As long as your controller extends Symfony's AbstractController then no additional tagging is needed. You can even delete the default controller lines in the default services.yaml file if you want.



来源:https://stackoverflow.com/questions/51907579/symfony-4-controllers-in-two-directories

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!