typesafeconfig-for-webapps

A sensible default configuration factory for a web application.

License

License

Categories

Categories

config Application Layer Libs Configuration
GroupId

GroupId

edu.gatech.gtri.typesafeconfig-extensions
ArtifactId

ArtifactId

typesafeconfig-for-webapps
Last Version

Last Version

1.1
Release Date

Release Date

Type

Type

jar
Description

Description

typesafeconfig-for-webapps
A sensible default configuration factory for a web application.
Project URL

Project URL

https://github.com/gtri/typesafeconfig-extensions
Project Organization

Project Organization

Georgia Tech Research Institute, CTISL
Source Code Management

Source Code Management

https://github.com/gtri/typesafeconfig-extensions

Download typesafeconfig-for-webapps

How to add to project

<!-- https://jarcasting.com/artifacts/edu.gatech.gtri.typesafeconfig-extensions/typesafeconfig-for-webapps/ -->
<dependency>
    <groupId>edu.gatech.gtri.typesafeconfig-extensions</groupId>
    <artifactId>typesafeconfig-for-webapps</artifactId>
    <version>1.1</version>
</dependency>
// https://jarcasting.com/artifacts/edu.gatech.gtri.typesafeconfig-extensions/typesafeconfig-for-webapps/
implementation 'edu.gatech.gtri.typesafeconfig-extensions:typesafeconfig-for-webapps:1.1'
// https://jarcasting.com/artifacts/edu.gatech.gtri.typesafeconfig-extensions/typesafeconfig-for-webapps/
implementation ("edu.gatech.gtri.typesafeconfig-extensions:typesafeconfig-for-webapps:1.1")
'edu.gatech.gtri.typesafeconfig-extensions:typesafeconfig-for-webapps:jar:1.1'
<dependency org="edu.gatech.gtri.typesafeconfig-extensions" name="typesafeconfig-for-webapps" rev="1.1">
  <artifact name="typesafeconfig-for-webapps" type="jar" />
</dependency>
@Grapes(
@Grab(group='edu.gatech.gtri.typesafeconfig-extensions', module='typesafeconfig-for-webapps', version='1.1')
)
libraryDependencies += "edu.gatech.gtri.typesafeconfig-extensions" % "typesafeconfig-for-webapps" % "1.1"
[edu.gatech.gtri.typesafeconfig-extensions/typesafeconfig-for-webapps "1.1"]

Dependencies

compile (4)

Group / Artifact Type Version
edu.gatech.gtri.typesafeconfig-extensions : typesafeconfig-internal jar 1.1
edu.gatech.gtri.typesafeconfig-extensions : typesafeconfig-factory jar 1.1
edu.gatech.gtri.typesafeconfig-extensions : typesafeconfig-jndi jar 1.1
com.typesafe : config jar 1.0.2

provided (1)

Group / Artifact Type Version
javax.servlet : servlet-api Optional jar 2.5

test (4)

Group / Artifact Type Version
edu.gatech.gtri.typesafeconfig-extensions : typesafeconfig-for-scala_2.10 jar 1.1
org.specs2 : specs2_2.10 jar 2.2.1
org.eclipse.jetty : jetty-plus jar 7.3.0.v20110203
org.scalaj : scalaj-http_2.10 jar 0.3.10

Project Modules

There are no modules declared in this project.

Typesafe Config Extensions

Libraries supporting Typesafe Config.

This project's release artifacts are available in the Maven Central Repository.

Components

Factory

typesafeconfig-factory provides a ConfigFactory class with which you can clearly and concisely express how you want all sources of configuration data to be aggregated.

import edu.gatech.gtri.typesafeconfigextensions.factory.*;
import static edu.gatech.gtri.typesafeconfigextensions.factory.ConfigFactory.*;

A standard configuration loader can be defined as follows.

ConfigFactory standard = emptyConfigFactory()
     .bindDefaults()
     .withSources(
         classpathResource("reference"),
         classpathResource("application"),
         systemProperties()
     ).fromLowestToHighestPrecedence();

reference.conf classpath resources are overridden by application.conf, and both are overridden by system properties.

Suppose we also want to load configuration from /etc/exampleApp.conf, sandwiched in the precedence order between the classpath configs and the system properties. The previous factory can be adapted to this requirement.

java.nio.file.Path path = java.nio.file.Paths.get("/etc/exampleApp");

ConfigFactory custom = standard
    .insertSource(configFile().byPath(path))
    .withHigherPrecedenceThan(classpathResource("application"));

Suppose we don't want to use a fixed filesystem path, but would rather let the user of our application decide where to put their config file.

To support this scenario, ConfigFactory repeats its loading process twice so that values from the first Config can be used to load even more configuration on the second go. This allows us to load a file by key:

ConfigFactory custom2 = standard
    .insertSource(configFile().byKey("exampleApp.config.file"))
    .withHigherPrecedenceThan(classpathResource("application"));

Now someone can launch your application with the JVM flag -DexampleApp.config.file=$HOME/myAppSettings, and the contents of $HOME/myAppSettings.conf will be loaded into the configuration.

Maven dependency

<dependency>
  <groupId>edu.gatech.gtri.typesafeconfig-extensions</groupId>
  <artifactId>typesafeconfig-factory</artifactId>
  <version>1.1</version>
</dependency>

JNDI

typesafeconfig-jndi converts a JNDI context into a Config object so you'll never have to deal with the javax.naming API again.

import javax.naming.Context;
import static edu.gatech.gtri.typesafeconfigextensions.jndi.JndiContexts.*;

To convert from javax.naming.Context to Config:

Context someContext = /* ... */;
Config config = context(someContext).toConfig();

To just retrieve a JNDI variable named abc from the initial context:

String configValue = jndiContext().toConfig().getString("abc");

Maven dependency

<dependency>
  <groupId>edu.gatech.gtri.typesafeconfig-extensions</groupId>
  <artifactId>typesafeconfig-jndi</artifactId>
  <version>1.1</version>
</dependency>

For Webapps

typesafeconfig-for-webapps defines a standard ConfigFactory for servlet-based web applications.

import edu.gatech.gtri.typesafeconfigextensions.forwebapps.WebappConfigs.*;
ServletContext servletContext = /* ... */;
ConfigFactory factory = webappConfigFactory(servletContext);

This factory loads these configuration sources, in order from highest to lowest precedence:

  • System properties
  • File: JNDI(webapp.config.directory)/[servlet context path]
  • File: ${webapp.config.directory}/[servlet context path]
  • File: JNDI(webapp.config.file)
  • File: ${webapp.config file}
  • Classpath resource: application.conf
  • Classpath resource: reference.conf

JNDI(x) refers to the JNDI variable named x, [servlet context path] is the value of servletContext.getContextPath(), and ${x} denotes the value of the Config at path x.

You might set up server.xml in a Tomcat installation like this, for example:

<Context path="/myApplication/apiServer" docBase="/users/chris/myAppApiServer">
  <Environment name="webapp.config.directory" type="java.lang.String" value="${CATALINA_BASE}/conf"/>
</Context>

(CATALINA_BASE is an environment variable pointing to the path of the Tomcat installation.)

This web application's ConfigFactory would then include configuration loaded from $CATALINA_BASE/conf/myApplication/apiServer.conf.

Maven dependency

<dependency>
  <groupId>edu.gatech.gtri.typesafeconfig-extensions</groupId>
  <artifactId>typesafeconfig-for-webapps</artifactId>
  <version>1.1</version>
</dependency>

For Scala

typesafeconfig-for-scala adds some sugar to help use the Config library in Scala.

import edu.gatech.gtri.typesafeconfigextensions.forscala._
val a = "A { B: C }, D: E".toConfig          // A { B: C }, D: E
val b = ("A" -> 7).toConfig                  // A: 7
val c = Seq("A" -> 4, "B" -> "C").toConfig   // A: 4, B: C
val d = c ++ b                               // A: 7, B: C
val e = b + ("F" -> "G")                     // A: 7, F: G
val f = a - "A"                              // D: E

SBT dependency

libraryDependencies += "edu.gatech.gtri.typesafeconfig-extensions" %
                       "typesafeconfig-for-scala_2.10" % "1.1"

Information for developers

Build scripts

./sbt to launch the build tool (SBT).

./checkstyle to run Checkstyle.

Deploying

Setting up SBT

Add your Sonatype login to ~/.sbt/0.13/sonatype.sbt:

credentials += Credentials(
  "Sonatype Nexus Repository Manager", "oss.sonatype.org",
  "your-username", "your-password")

Optionally, include the passphrase for the PGP key.

pgpPassphrase := Some("your-pgp-passphrase".toArray)

Publishing to Sonatype

./sbt publish

This creates a staging repository at https://oss.sonatype.org/index.html#stagingRepositories

Close the staging repository.

If all is well, you can then Release the repository.

edu.gatech.gtri.typesafeconfig-extensions

Georgia Tech Research Institute

Versions

Version
1.1
1.0