XML and Case Class

XML and Case Class

I compare the library scalaxb and XStream. It seems to me that XStream is more easy to use.

Here is first step to add the dependencies.
"com.thoughtworks.xstream" % "xstream" % "1.4.8",
"org.joda" % "joda-convert" % "1.7",

The Trait object to deal with the xstream base class.
package com.sillycat.jobsconsumer.utilities

import com.sillycat.jobsconsumer.models.Job
import com.thoughtworks.xstream.XStream
import com.thoughtworks.xstream.io.xml.DomDriver

trait IncludeXMLMapping {

var xStream : XStream = new XStream(new DomDriver())

xStream.alias("job", classOf[Job])

def toXML(obj:Any): String ={
xStream.toXML(obj)
}

def fromXML(xml:String):Any = {
xStream.fromXML(xml)
}

}

Here is the Test Class
package com.sillycat.jobsconsumer.models

import com.sillycat.jobsconsumer.utilities.{IncludeXMLMapping}
import org.scalatest.{BeforeAndAfter, Matchers, FunSpec}

class JobXMLSpec extends FunSpec with Matchers with BeforeAndAfter with IncludeXMLMapping {

describe("JobXMLMapping") {
describe("#xml2object"){
it("Convert xml string to object") {
val xml =
"""<job>
| <id>id1</id>
| <title>title1</title>
| <desc>desc1</desc>
| <industry>sales</industry>
|</job>""".stripMargin
val job1 = fromXML(xml).asInstanceOf[Job]
job1.title should be ("title1")
}
}
describe("#object2xml"){
it("Convert object to xml string") {
val job1 = Job("id1","title1","desc1","sales")
val expect =
"""<job>
| <id>id1</id>
| <title>title1</title>
| <desc>desc1</desc>
| <industry>sales</industry>
|</job>""".stripMargin
val xml = toXML(job1)
xml should be (expect)
}
}
}

}


Tip
Warning Message
[warn] Class java.time.Duration not found - continuing with a stub.
[warn] Class java.time.Duration not found - continuing with a stub.
[warn] two warnings found

Solution:
Adding package dependency fixes the problem.
"org.joda" % "joda-convert" % "1.7",


References:
http://x-stream.github.io/tutorial.html
http://alvinalexander.com/scala/serializing-deserializing-xml-scala-classes

xml to object
https://github.com/takezoe/solr-scala-client

case class mapper
https://github.com/takezoe/solr-scala-client/blob/master/src/main/scala/jp/sf/amateras/solr/scala/CaseClassMapper.scala
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值