You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Configconfig = ConfigFactory.load("config.conf");
Injectorinjector = Guice.createInjector(
TypesafeConfigModule.fromConfigWithPackage(config, "com.my.package");
// ... Add your other modules here
);
Step 3:
Profit!
Features
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 "carview.php?tsp=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
AUTHOR
Jason Then
Any comments and feedback appreciated!
LICENSE
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
https://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.
About
Allows Guice Injection of configuration values from Typesafe Config