Pure Configuration Handling
Explore how to handle configuration purely in Scala back-end services. Learn to define configuration as data types and use PureConfig with semi-automatic derivation to improve maintainability and type safety in your HTTP APIs.
We'll cover the following...
We'll cover the following...
In impure implementation, we simply loaded our configuration via the typesafe config library. Can’t we do better here?
Configuration
The answer is yes, we can by using the PureConfig library. First, we start by implementing the necessary parts of our configuration ...