Allows Guice to @Inject configuration values into your application derived from Typesafe Config.
Available on Maven Central.
<dependency>
<groupId>com.github.racc</groupId>
<artifactId>typesafeconfig-guice</artifactId>
<version>0.1.0</version>
</dependency>
Annotate configuration injection points (Constructors, Providers, Provider methods, Setter methods, Fields) with @TypesafeConfig("config.path.key")
Bootstrap your application with Guice and the TypesafeConfigModule.
Configuration values annotated with @TypesafeConfig
will be scanned for on the classpath, and then bound from your supplied Typesafe Config file.
Config config = ConfigFactory.load("config.conf");
Injector injector = Guice.createInjector(
TypesafeConfigModule.fromConfigWithPackage(config, "com.my.package");
// ... Add your other modules here
);
Profit!
- Plain Old Java Objects which follow JavaBean conventions (zero-args constructor, getters and setters) can be injected.
- Supports injections of
java.time.Duration
objects with config parameters defined as "10 seconds", "10 minutes" etc. - Supports injections of
com.typesafe.config.ConfigMemorySize
objects with config parameters defined as "512k" or "2M" etc. - Supports injections of
boolean
, where the matching config parameter can be "true", "false", "yes" or "no". - Supports injections of List types of primitives:
boolean
,int
,double
,long
,string
,java.time.Duration
,com.typesafe.config.ConfigMemorySize
- Supports injections of
java.util.Map<String, Object>
- Supports injections of POJO Lists.
- Extensive test coverage
Jason Then
Any comments and feedback appreciated!
Copyright 2018 Jason Then
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.