get a error of JMSSerializerBundle in Symfony2.3.4 and ODM

776 Views Asked by At

error is ServiceNotFoundException: The service "jms_serializer.metadata_driver" has a dependency on a non-existent service "doctrine".

my configure in composer.json:

"jms/serializer-bundle": "dev-master", "jms/di-extra-bundle": "dev-master"

what's wrong?

1

There are 1 best solutions below

3
On

Are you aliasing the default object constructor to the DoctrineObjectConstructor? E.g.

jms_serializer.object_constructor:
    alias: jms_serializer.doctrine_object_constructor

If you are, it appears that the DoctrineObjectConstructor assumes the use of Doctrine's ORM solution, not an ODM solution like MongoDB. Another user commented on the use of the DoctrineObjectConstructor with MongoDB here.

In summary, you need to redefine the DoctrineObjectConstructor with a reference to doctrine_mongodb instead of doctrine, e.g.:

jms_serializer.doctrine_object_constructor:
    class:        %jms_serializer.doctrine_object_constructor.class%
    public:       false
    arguments:    ["@doctrine_mongodb", "@jms_serializer.unserialize_object_constructor"]

Even if the issue isn't explicitly related to the DoctrineObjectConstructor, you may find that the above solution can be translated to the service or object causing problems in your configuration.