のSymfony 2.7のドキュメントは、コンパイラパスを使用するように更新されました:https://symfony.com/doc/2.7/security/target_path.html
私は、この変更はすぐにドキュメントのそれ以降のバージョンに流れることになることを想像してみてください。
// src/AppBundle/Security/Firewall/ExceptionListener.php
namespace AppBundle\Security\Firewall;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Security\Http\Firewall\ExceptionListener as BaseExceptionListener;
class ExceptionListener extends BaseExceptionListener
{
protected function setTargetPath(Request $request)
{
// Do not save target path for XHR requests
// You can add any more logic here you want
// Note that non-GET requests are already ignored
if ($request->isXmlHttpRequest()) {
return;
}
parent::setTargetPath($request);
}
}
// src/AppBundle/DependencyInjection/Compiler/ExceptionListenerPass.php
namespace AppBundle\DependencyInjection\Compiler;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use AppBundle\Security\Firewall\ExceptionListener;
class ExceptionListenerPass implements CompilerPassInterface
{
public function process(ContainerBuilder $container)
{
// Use the name of your firewall for the suffix e.g. 'secured_area'
$definition = $container->getDefinition('security.exception_listener.secured_area');
$definition->setClass(ExceptionListener::class);
}
}
// src/AppBundle/AppBundle.php
namespace AppBundle;
use AppBundle\DependencyInjection\Compiler\ExceptionListenerPass;
class AppBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
$container->addCompilerPass(new ExceptionListenerPass());
}
}
あなたは(3.4アウトになるまで、少なくともそれは、LTSされ、現在は3 *よりも優れている)のSymfony 2.8で試すことができます。あなたのcomposer.jsonの "symfony/symfony"の制約を "2.8。*"に置き換えて、コンポーザのアップデートを実行してください。 –
確かに魅力的ではありませんが、それはオプションだと思います。しかし、彼らはそのような重要な機能を削除することはできませんか? –
あなたはこれに対する解決策を見つけましたか?私は問題のコメントに示された解決策を試してみて、それは私のために働く。しかし、パラメータを好むだろう。 –