Top "Typesafe-config" questions

Typesafe-config is a configuration reading library written by Typesafe.

No configuration setting found for key typesafe config

Im trying to implement a configuration tool typesafehub/config im using this code val conf = ConfigFactory.load() val url = conf.…

scala typesafe-config
No configuration setting found for key 'akka.version'

I am learning akka-remoting and this is how my project looks The project structure looks like project/pom.xml project/…

scala maven akka typesafe-stack typesafe-config
Scala: Write value to typesafe config object

I'm using Typesafe config & have a config file in my resources directory which looks like this: something { another { someconfig=…

scala typesafe-config hocon
How to add configuration file to classpath of all Spark executors in Spark 1.2.0?

I'm using Typesafe Config, https://github.com/typesafehub/config, to parameterize a Spark job running in yarn-cluster mode with a …

apache-spark classpath yarn typesafe-config
Overriding multiple config values in Typesafe config when using an uberjar to deploy

I've an Akka application which uses multiple configuration values (IP address, port numbers) defined in resource/application.conf. I'm using …

scala deployment sbt akka typesafe-config
Typesafe config: How to iterate over configuration items

In my Play application I've a configuration like this: social { twitter { url="https://twitter.com" logo="images/twitter.png" } facebook { …

scala playframework typesafe-config
How do I get an unwrapped key in Typesafe Config?

Test case: import org.specs2.mutable._ class HelloWorldSpec extends Specification { "Typesafe Config" should "allow me to see my escaped key" …

scala typesafe typesafe-config
Merging multiple TypeSafe Config files and resolving only after they are all merged

I am writing test code to validate a RESTful service. I want to be able to point it at any …

merge typesafe-config
Case Class Instantiation From Typesafe Config

Suppose I have a scala case class with the ability to serialize into json (using json4s or some other …

scala typesafe-config hocon
Accessing array elements in a TypeSafe configuration

Given a nested JSON as configuration, like: { app: { id: "app1" instances: 2, servers: [ { host: "farm1.myco.com", port: 9876 } { host: "farm2.myco.…

json configuration typesafe-config