scala
1178615156
这个作者很懒,什么都没留下…
展开
-
mongodb 的 scala 驱动 -> casbah
github地址: github.com/1178615156/service要引的包: “org.mongodb” %% “casbah” % “2.8.1” web 框架:play 随手封装了下 基本思路:在MongoDao 中实现 镇上查改功能,需要一个隐式参数 用于将 entity 与 DBObject 进行互转 代码 MongoDao—/** * 基于casbah 实现的原创 2015-07-09 22:35:00 · 890 阅读 · 0 评论 -
在 scala 中 实现 一个方便序列化的 enumeration 类
trait Enum[_V] { type Value _V protected implicit def v2v(v: _V): Value = v.asInstanceOf[Value]}//----------------//test object R extends Enum[String] { val a: Value = "1" val b: Value = "2"原创 2015-08-13 13:01:44 · 665 阅读 · 0 评论 -
scala macro annotation 使用 例子
功能:用 宏注解实现一个 为case class 生成get set 方法 注解github 地址:https://github.com/1178615156/use-scala-macro-annotation-make-get-set//功能如下@MakeGetSetcase class Hello( var a: String,原创 2015-09-04 19:50:49 · 1184 阅读 · 1 评论 -
scala slick 使用macro 实现根据字段名排序
假设我们有一张表usercase class User( mobile: String, name: Option[String], id: Long )class UserTable(tag: Tag) extends Table[User](tag, "user")原创 2015-11-15 21:38:23 · 826 阅读 · 0 评论