PureConfig is a Scala library for loading configuration files. It reads Typesafe Config configurations written in HOCON, Java .properties
, or JSON to native Scala classes in a boilerplate-free way. Sealed traits, case classes, collections, optional values, and many other types are all supported out-of-the-box. Users also have many ways to add support for custom types or customize existing ones.
Loading configurations has always been a tedious and error-prone procedure. A common way to do it consists in writing code to deserialize each fields of the configuration. The more fields there are, the more code must be written (and tested and maintained...) and this must be replicated for each project.
This kind of code is boilerplate because most of the times the code can be automatically generated by
the compiler based on what must be loaded. For instance, if you are going to load an Int
for a field
named foo
, then probably you want some code that gets the values associated with the key foo
in
the configuration and assigns it to the proper field after converting it to Int
.
The goal of this library is to create at compile-time the boilerplate necessary to load a configuration of a certain type. In other words, you define what to load and PureConfig provides how to load it.
To use PureConfig in an existing SBT project with Scala 2.12 or a later version, add the following dependency to your
build.sbt
:
libraryDependencies += "com.github.pureconfig" %% "pureconfig" % "0.17.7"
For Scala 3, add the following dependency to your build.sbt
:
libraryDependencies += "com.github.pureconfig" %% "pureconfig-core" % "0.17.7"
While a lot of the documentation will also apply to Scala 3, there is a specific guide for Scala 3's derivation that you can find here.
For a full example of build.sbt
you can have a look at this build.sbt.
Earlier versions of Scala had bugs which can cause subtle compile-time problems in PureConfig. As a result we recommend only using the latest Scala versions within the minor series.
In your code, import pureconfig.generic.auto
and define data types and a case class to hold the configuration:
import pureconfig._
import pureconfig.generic.auto._
case class Port(number: Int) extends AnyVal
sealed trait AuthMethod
case class Login(username: String, password: String) extends AuthMethod
case class Token(token: String) extends AuthMethod
case class PrivateKey(pkFile: java.io.File) extends AuthMethod
case class ServiceConf(
host: String,
port: Port,
useHttps: Boolean,
authMethods: List[AuthMethod]
)
Second, create an application.conf
file and add it as a resource of your application (with SBT, they are usually
placed in src/main/resources
):
// src/main/resources/application.conf
host = "example.com"
port = 8080
use-https = true
auth-methods = [
{ type = "private-key", pk-file = "/home/user/myauthkey" },
{ type = "login", username = "pureconfig", password = "12345678" }
]
Finally, load the configuration:
ConfigSource.default.load[ServiceConf]
// res4: ConfigReader.Result[ServiceConf] = Right(
// ServiceConf(
// "example.com",
// Port(8080),
// true,
// List(PrivateKey(/home/user/myauthkey), Login("pureconfig", "12345678"))
// )
// )
ConfigReader.Result[ServiceConf]
is just an alias for Either[ConfigReaderFailures, ServiceConf]
, so you can handle
it just like you would handle an Either
value.
The various loadConfig
methods defer to Typesafe Config's
ConfigFactory
to
select where to load the config files from. Typesafe Config has well-documented rules for configuration
loading which we'll not repeat. Please see Typesafe
Config's documentation for a full telling of the subtleties.
Alternatively, PureConfig also provides a loadConfigFromFiles
method that builds a configuration from
an explicit list of files. Files earlier in the list have greater precedence than later ones. Each file can
include a partial configuration as long as the whole list produces a complete configuration. For an example,
see the test of loadConfigFromFiles
in
ApiSuite.scala
.
Because PureConfig uses Typesafe Config to load configurations, it supports reading files in HOCON, JSON, and Java .properties
formats. HOCON is a superset of both JSON and .properties
that is highly recommended. As an added bonus it supports advanced features like variable substitution and file sourcing.
Please see the full PureConfig documentation for more information.
PureConfig is a free library developed by several people around the world. Contributions are welcomed and encouraged. If you want to contribute, we suggest to have a look at the available issues and to talk with us on the PureConfig Gitter channel.
If you'd like to add support for types which are not part of the standard Java or Scala libraries, please consider submitting a pull request to create a module. Pull Request #108 created a very simple module. It should provide a good template for the pieces you'll need to add.
The steps to create a new module, called nexttopmod
, are:
- Define a new project in the root
build.sbt
. There are other examples near the top of the file; - Create a new
modules/nexttopmod/
subdirectory; - Add a
modules/nexttopmod/build.sbt
defining the module's name and special dependencies; - Implement converters. Typically they're in a
package object
inmodules/nexttopmod/src/main/scala/pureconfig/module/nexttopmod/package.scala
; - Test the converters. Usually tests would be in
modules/nexttopmod/src/test/scala/pureconfig/module/nexttopmod/NextTopModSuite.scala
; - Optionally explain a little bit about how it works in
modules/nexttopmod/README.md
.
PureConfig supports the Typelevel code of conduct and wants all of its channels (Gitter, GitHub, etc.) to be welcoming environments for everyone.
Mozilla Public License, version 2.0
To the Shapeless and to the Typesafe Config developers.