Top "Typesafe" questions

Typesafe (now Lightbend) was founded to create a modern software platform for the era of multicore hardware and cloud computing workloads.

How to get a list with the Typesafe config library

I'm trying in Scala to get a list from a config file like something.conf with TypeSafe. In something.conf …

scala typesafe
Iterate over fields in typesafe config

I have perks.conf: autoshield { name="autoshield" price=2 description="autoshield description" } immunity { name="immunity" price=2 description="autoshield description" } premium { name="…

scala typesafe
Typesafe Config: Load configuration from src/test/resources

This is a beginner question. So my app structure looks like src/main/java/... src/main/resources/application.conf src/…

java configuration akka typesafe typesafe-stack
Slick 3.0 bulk insert or update (upsert)

what is the correct way to do a bulk insertOrUpdate in Slick 3.0? I am using MySQL where the appropriate query …

mysql sql scala slick typesafe
Akka Stream Kafka vs Kafka Streams

I am currently working with Akka Stream Kafka to interact with kafka and I was wonderings what were the differences …

scala akka-stream apache-kafka-streams typesafe stream-processing
How can I override a typesafe config list value on the command line?

I have an application.conf file with a structure like the following: poller { datacenters = [] } I would like to override "datacenters" …

java scala config typesafe
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
Overriding configuration with environment variables in typesafe config

Using typesafe config, how do I override the reference configuration with an environment variable? For example, lets say I have …

environment-variables config typesafe
com.typesafe.config.ConfigException$Missing: No configuration setting found for key 'play'

I work in a sbt project, and i am using library play-ws. but my application does not play framework. So, …

scala playframework key config typesafe
What is the difference between scala StrictLogging and Lazylogging?

Consider the below code which uses scala logging: class MyClass extends LazyLogging { logger.debug("This is very convenient") } What is …

scala logging typesafe