3

我无法覆盖 jms 序列化程序包中的默认处理程序。

我想改变Symfony\Component\Validator\ConstraintViolationList序列化的方式,所以我编写了自己的自定义处理程序。并按照文档中的描述正确标记它(以及各种stackoverflow答案)。

但是,我的处理程序一直被 JMS Serializer 捆绑包附带的 ConstraintViolationList 的默认处理程序覆盖。

我已经正确标记了我的处理程序服务。事实上,当我注释掉ms_serializer.constraint_violation_handler服务定义时,我的处理程序服务被检测到并正确使用vendor/jms/serializer-bundle/JMS/SerializerBundle/Resources/config/services.xml

如何阻止默认处理程序覆盖我的自定义处理程序?

我什至尝试过从jms_serializer.constraint_violation_handler.class我自己的包中覆盖参数,但仍然没有运气。

这是我的处理程序类:

<?php
namespace Coanda\Bridge\JMSSerializer\Handler;

use JMS\Serializer\Context;
use JMS\Serializer\GraphNavigator;
use JMS\Serializer\Handler\SubscribingHandlerInterface;
use JMS\Serializer\JsonSerializationVisitor;
use Symfony\Component\Validator\ConstraintViolation;
use Symfony\Component\Validator\ConstraintViolationList;

class ConstraintViolationHandler implements SubscribingHandlerInterface
{
    public static function getSubscribingMethods()
    {
        $methods = [];
        $methods[] = [
            'direction' => GraphNavigator::DIRECTION_SERIALIZATION,
            'type' => ConstraintViolationList::class,
            'format' => 'json',
            'method' => 'serializeListToJson'
        ];
        return $methods;
    }

    public function serializeListToJson(
        JsonSerializationVisitor $visitor,
        ConstraintViolationList $list,
        array $type,
        Context $context
    ) {
        $violations = [];
        foreach ($list as $item) {
            $violations[$item->getPropertyPath()][] = $item->getMessage();
        }
        if (null === $visitor->getRoot()) {
            $visitor->setRoot($violations);
        }
        return $violations;
    }

}

我已经在我的services.xml

    <service id="coanda.serializer.constraint_violation_handler"
        class="Coanda\Bridge\JMSSerializer\Handler\ConstraintViolationHandler">
        <tag name="jms_serializer.subscribing_handler"
            type="Symfony\Component\Validator\ConstraintViolationList"
            direction="serialization" format="json" method="serializeListToJson" />
    </service>
4

3 回答 3

4

发生这种情况是因为 JMSSerializerBundle 是在我的包之后在 AppKernel 中注册的,这意味着我定义的任何服务都将被 JMS Serializer 的版本覆盖。

解决方案:将你的包放在 AppKernel.php 的最底部,如下所示:

public function registerBundles()
{
    $bundles = [
        // .......
        new JMS\SerializerBundle\JMSSerializerBundle(),
        new My\Bundle\MyAwesomeBundle()
    ];

    return $bundles;
}
于 2016-06-29T11:02:50.470 回答
2

对于版本

"name": "jms/serializer-bundle",
"version": "3.5.0",

"name": "symfony/framework-bundle",
"version": "v5.0.5",

决定应该是这样的,'priority' => -915应该在getSubscribingMethods

    /**
     * @return array
     */
    public static function getSubscribingMethods()
    {
        return [
            [
                'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
                'format' => 'json',
                'type' => ConstraintViolationList::class,
                'method' => 'serializeCustomListToJson',
                'priority' => -915
            ]
        ];
    }

然后\JMS\SerializerBundle\DependencyInjection\Compiler\CustomHandlersPass::sortAndFlattenHandlersList将其移动到最后一个位置并在处理程序中设置自定义服务而不是 jms 默认处理程序

于 2020-04-01T14:23:31.507 回答
0

这个配置对我有用:

    exception:
        enabled: true
        serializer_error_renderer: true
于 2021-12-20T17:07:46.203 回答