我需要创建一个可以包含对象列表的Web服务。一个列表可以包含许多类型的对象。例如,在这里,我有一个媒体项目库。每个项目可以是链接或视频,每个项目都有自己的元数据。
我想用Lift web框架做这件事,因为我需要一些编译成WAR的东西,我之前使用过Lift。
我认为使用MongoDB进行这种存储可以起到定义,它应该能够处理异构项的集合。
我可以定义要存储在Lift记录中的BSON对象的类型,但我似乎无法在一个记录/集合中仅创建一种类型的对象。理想情况下,我希望我的库中的每个“东西”(缺少更好的词)都 视频或链接。例如:
[
{
"type" : "Video",
"title" : "Story",
"videoID" : "123ab4",
"description": "Feature-length epic",
"time" : 12.6
},
{
"type" : "link",
"url" : "http://www.google.com",
"title": "Search for stuff"
}
]
我应该能够使用正确的继承类型来完成它,但是所有记录对象的父对象都从对象继承的方式会让我失望。我可以让这个工作吗?拥有Lift可以使用的不同东西的集合吗?
这是我到目前为止所拥有的。我没有对它进行过测试,但即使它能够正常工作,它也可以 NOT 我想要的东西。
import net.liftweb.record._
import net.liftweb.record.field._
import net.liftweb.mongodb._
import net.liftweb.mongodb.record._
import net.liftweb.mongodb.record.field._
class VideoShelf private () extends BsonRecord[VideoShelf] {
def meta = VideoShelf
object title extends StringField (this, 256)
object videoID extends StringField (this, 32 )
object description extends StringField (this, 256)
object time extends DecimalField(this, 0 )
}
object VideoShelf extends VideoShelf with BsonMetaRecord[VideoShelf]
class LinkShelf private () extends BsonRecord[LinkShelf] {
def meta = LinkShelf
object url extends StringField(this, 128)
object title extends StringField(this, 256)
}
object LinkShelf extends LinkShelf with BsonMetaRecord[LinkShelf]
class MediaLibrary private () extends MongoRecord[MediaLibrary] with ObjectIdPk[MediaLibrary] {
def meta = MediaLibrary
///////////////////////////////////////
///////////////////////////////////////
// What I want is this record type to
// contain either of these:
///////////////////////////////////////
object videoshelf extends BsonRecordField(this, VideoShelf)
object linkshelf extends BsonRecordField(this, LinkShelf )
}
object MediaLibrary extends MediaLibrary with MongoMetaRecord[MediaLibrary]
我怎么能得到这个?
答案 0 :(得分:1)
在寻求更多信息后,我发现了这篇帖子:https://groups.google.com/forum/#!topic/liftweb/LmkhvDgrgrI
这导致我得出这个结论,我认为这是正确的,尽管尚未经过测试。我可能会错过一些完整的工作。
import net.liftweb.record._
import net.liftweb.record.field._
import net.liftweb.mongodb._
import net.liftweb.mongodb.record._
import net.liftweb.mongodb.record.field._
/**
* The base record type for library objects.
*/
trait MediaLibrary[T <: MediaLibrary[T]] extends MongoRecord[T] with ObjectIdPk[T] {
self: T =>
}
/**
* Items in the library that are videos.
*/
class VideoItem extends MediaLibrary[VideoItem] {
def meta = VideoItem
object title extends StringField (this, 256)
object videoID extends StringField (this, 32 )
object description extends StringField (this, 256)
object time extends DecimalField(this, 0 )
}
object VideoItem extends VideoItem with MongoMetaRecord[VideoItem]
/**
* Items in the library that are links.
*/
class LinkItem extends MediaLibrary[LinkItem] {
def meta = LinkItem
object url extends StringField (this, 256)
object title extends StringField (this, 256)
}
object LinkItem extends LinkItem with MongoMetaRecord[LinkItem]
我还发现有一个特定于MongoDB的记录是一个案例类列表。这似乎正是我所需要的!这是Scala和Mongo携手共进的力量!这就是我从一开始就想要的。我明天要试试。