How to update object in Mongo with an immutable Salat case class

后端 未结 3 1087
遥遥无期
遥遥无期 2021-01-24 16:51

I\'m working on a project with Scala, Salat, Casbah, Mongo, Play2, BackboneJS... But it\'s quite a lot of new things to learn in the same time... I\'m ok with Scala but I find m

相关标签:
3条回答
  • 2021-01-24 17:14

    Salat handles JSON using lift-json - see https://github.com/novus/salat/wiki/SalatWithPlay2.

    Play itself uses Jerkson, which is another way to decode your model objects - see http://blog.xebia.com/2012/07/22/play-body-parsing-with-jerkson/ for an example.

    Feel free to make a small sample Github project that demonstrates your issue and post to the Salat mailing list at https://groups.google.com/group/scala-salat for help.

    0 讨论(0)
  • 2021-01-24 17:14

    Actually the answer is pretty simple: I didn't know there was a built-in copy method on case classes that allows to copy an immutable case class while changing some data.

    I don't have nested case class structures but the Tony Morris suggestion of using Lenses seems nice too.

    0 讨论(0)
  • 2021-01-24 17:19

    There are really two problems in your question:

    1. How do I use Play Salat.
    2. How do I prevent updates to certain fields.

    The answer to your first question lies in the Play Salat documentation. Your second question could be answered a few ways.

    a. When the update is pushed to the server from Backbone, you could grab the object id and find it in the database. At that point you have both copies of the object. At that point, you can fire a business rule to make sure the sender didn't attempt to change those fields.

    or

    b. You could put some of your fields in another document of an embedded document. The client would have access to them for rendering purposes but your API wouldn't allow them to be pushed back to Mongo.

    or

    c. You could write a custom update query that ignores the fields you don't want changed.

    0 讨论(0)
提交回复
热议问题