Getting Started with Scala-Circe

Seeni
1 min readNov 13, 2021

--

This is TLDR; article.

If you are beginner to Scala-Circe library and you want to know how to decode/encode JSON, do as below.

Your Classes

Assume your application has a nested class named Person which has members as classes.

Your Task

You need to encode objects and decode text using Circe and use them as per Business Logic.

How to do?

(I will give you a simple straight forward approach that will work for 95% use cases)

  1. Add implicit codec in companion objects for your case classes.
  2. Add encode and decode method in companion object.

That’s it you can use Person.encode and Person.decode methods.

Sample app is below.

If you want to access runnable version of this code, along with imports and library version, use below link.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Seeni
Seeni

No responses yet

Write a response