Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
817 views
in Technique[技术] by (71.8m points)

orm - API Platform persisting in database and sending to message bus

I'm trying to make an Entity that will send a message to the bus, but also persist data in the database, for some reason I can't get it done with the messenger=persist attribute, while the documentation says it should work like that. Anyone have experience with the messenger=persist functionality?

Thanks for the help!

This is the apiresource attribute:

/**
 * @ORMEntity()
 * @ORMTable(name="app_run")
 * @ApiResource(
 *     messenger={"persist"},
 *     collectionOperations={
 *     "get","post"={
 *          "path" = "/connections/{id}/run",
 *       },
 *     },
 *     subresourceOperations={},
 *     output=false,
 *     itemOperations={"get"}
 * )
 */
class Run
{
//more code is here, but I think irrelevant
}
question from:https://stackoverflow.com/questions/65922370/api-platform-persisting-in-database-and-sending-to-message-bus

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...