文件名称:uri-template:https的Scala实现
文件大小:31KB
文件格式:ZIP
更新时间:2024-07-05 12:05:10
Scala
URI模板
在 Scala 中完整实现
使用示例(有关更多信息,请参阅测试)
import uritemplate._
import Syntax._
val template = URITemplate("http://example.com/hello/{variable}")
val expanded = template expand ("variable" := "world")
expanded == "http://example.com/hello/world"
依赖关系
SBT:
libraryDependencies += "no.arktekk" %% "uri-template" % "1.1"
Maven:
【文件预览】:
uri-template-master
----.gitignore(30B)
----project()
--------plugins.sbt(420B)
--------build.properties(19B)
--------Build.scala(3KB)
----src()
--------main()
--------test()
----LICENCE.txt(556B)
----README.md(749B)
----version.sbt(32B)
----rfc6570.txt(78KB)