Skip to content

Instantly share code, notes, and snippets.

@todokr
Last active November 10, 2015 05:50
Show Gist options
  • Save todokr/fd0f1745ff780c11e08a to your computer and use it in GitHub Desktop.
Save todokr/fd0f1745ff780c11e08a to your computer and use it in GitHub Desktop.
Play2/Scala JSON Serialize for Char type
class HogeController {
implicit var charFormat = new Writes[Char] {
def writes(c: Char): JsString = JsString(String.valueOf(c))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment