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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…