Home  >  Article  >  Backend Development  >  Symfony2 框架序列化工具的使用(二)

Symfony2 框架序列化工具的使用(二)

WBOY
WBOYOriginal
2016-06-23 13:09:00911browse

Symfony2 框架默认使用 ObjectNormalizer,这在上一篇文章里已经提到。但其实除了默认的方式,你也可以有更多的选择,比如使用 GetSetMethodNormalizer,你需要做的也只是注册一个服务:

services:    app.serializer.method_normalizer:        class: Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer        tags:            - { name: serializer.normalizer }

定义一个服务为 Normalizer 的关键其实就是最后一句对 tags的定义。只要定义一个服务为 serializer.normalizer他就成了 serializer服务里的一个 Normalizer 了。

GetSetMethodNormalizer的构造函数是可以允许不需要任何的参数的,但这样就不能使用 Annotation 来定义上篇文章所说的 Serialization Group 了;另外当注册了新的 Normalizer 的时候, config.yml里的 name_converter也不起作用(此设置只对框架自带的 Normalizer 有效果),所以在注册这个 Normalizer 服务时,最好模仿框架自带的 Normalizer,将读 Annotation 配置的 @serializer.mapping.class_metadata_factory服务和 @serializer.name_converter.camel_case_to_snake_case注入到服务里:

services:    app.serializer.method_normalizer:        class: Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer        arguments:            - '@serializer.mapping.class_metadata_factory'            - '@serializer.name_converter.camel_case_to_snake_case'        tags:            - { name: serializer.normalizer }

Circular Reference Handler

Symfony2 的文档中提到序列化是一个很复杂的话题,的确如此,比如要小心处理循环引用的问题,比如说一个 User 有 1 个 Group,但 Group 里又有 n 个 User,如果序列化这样的 User 对象,将会自动序列化这个 User 的 Group 对象,而序列化 Group 对象的时候,又会自动序列化 Group 里的所有 User 对象…… 好在 Symfony2 的序列化工具可设

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn