GithubHelp home page GithubHelp logo

jwalter / andhow Goto Github PK

View Code? Open in Web Editor NEW

This project forked from eeverman/andhow

0.0 2.0 0.0 14.27 MB

Strongly typed, validated, easy to use Java configuration

Home Page: https://sites.google.com/view/andhow/home

License: Apache License 2.0

Java 100.00%

andhow's Introduction

AndHow is looking for a new Logo - Enter your design before the end of October!

Build Status codecov Javadocs Andhow Visual AndHow! strong.valid.simple.AppConfiguration

AndHow is an easy to use configuration framework with strong typing and detailed validation for web apps, command line or any application environment.

Learn more at the AndHow main site

Key Features

  • Strong Typing
  • Detailed validation
  • Simple to use
  • Use Java public & private to control configuration visibility
  • Validates all property values at startup to Fail Fast
  • Loads values from multiple sources (JNDI, env vars, prop files, etc)
  • Generates configuration sample file based on application properties

Questions / Discussion / Contact

Join the discussion on the user forum or the Slack group (See details on the Join page).

Use it via Maven (available on Maven Central)

<dependency>
    <groupId>org.yarnandtail</groupId>
    <artifactId>andhow</artifactId>
    <version>0.4.0</version>
</dependency>

AndHow can be used in projects with Java 8 and above, however, Java 9 and above have some restrictions

Complete Usage Example

More usage examples and documentation are available at the AndHow main site

package org.simple;

import org.yarnandtail.andhow.AndHow;
import org.yarnandtail.andhow.property.*;

public class GettingStarted {
	
	//1
	public final static IntProp COUNT_DOWN_START = IntProp.builder().mustBeNonNull()
			.mustBeGreaterThanOrEqualTo(1).defaultValue(3).build();
	
	private final static StrProp LAUNCH_CMD = StrProp.builder().mustBeNonNull()
			.desc("What to say when its time to launch")
			.mustMatchRegex(".*Go.*").defaultValue("Go-Go-Go!").build();
	
	public String launch() {
		String launch = "";
		
		//2
		for (int i = COUNT_DOWN_START.getValue(); i >= 1; i--) {
			launch = launch += i + "...";
		}
		
		return launch + LAUNCH_CMD.getValue();
	}
	
	public static void main(String[] args) {
		AndHow.findConfig().setCmdLineArgs(args);	//3 Optional
		
		System.out.println( new GettingStarted().launch() );
		System.out.println( LAUNCH_CMD.getValue().replace("Go", "Gone") );
	}
}

Section //1 : Declaring AndHow Properties

Properties must be final static, but may be private or any other scope. builder methods simplify adding validation, description, defaults and other metadata. Properties are strongly typed, so default values and validation are type specific, e.g., StrProp has Regex validation while the IntProp has GreaterThan / LessThan rules available.

Section //2 : Using AndHow Properties

AndHow Properties are used just like static final constants with an added .getValue() tacked on. Strong typing means that calling COUNT_DOWN_START.getValue() returns an Integer while calling LAUNCH_CMD.getValue() returns a String.

An AndHow Property (and its value) can be accessed anywhere it is visible. COUNT_DOWN_START is public in a public class, so it could be used anywhere, while LAUNCH_CMD is private. AndHow Properties are always static, so they can be accessed in both static and instance methods, just like this example shows.

Section //3 : Accepting Command Line Arguments

If an application needs command line arguments (CLAs), just pass them to AndHow at startup as this example shows. Properties are referred to using 'dot notation', e.g.:

java -jar GettingStarted.jar org.simple.GettingStarted.LAUNCH_CMD=GoManGo

If you don't need to accept CLA's, you can leave line //3 out - AndHow will initialize and startup without any explicit init method when the first Property is accessed.

How do I actually configure some values?

We're getting there. The example has defaults for each property so with no other configuration available, the main method uses the defaults and prints:

3...2...1...Go-Go-Go!
Gone-Gone-Gone!

Things are more interesting if the default values are removed from the code above:

public final static IntProp COUNT_DOWN_START = IntProp.builder().mustBeNonNull()
		.mustBeGreaterThanOrEqualTo(1).build();  //default removed
	
private final static StrProp LAUNCH_CMD = StrProp.builder().mustBeNonNull()
		.mustMatchRegex(".*Go.*").build();  //default removed

Both properties must be non-null, so removing the defaults causes the validation rules to be violated at startup. Here is an excerpt from the console when that happens:

========================================================================
Drat! There were AndHow startup errors.
Sample configuration files will be written to: '/some_local_tmp_directory/andhow-samples/'
========================================================================
Property org.simple.GettingStarted.COUNT_DOWN_START: This Property must be non-null
Property org.simple.GettingStarted.LAUNCH_CMD: This Property must be non-null
========================================================================

AndHow does validation at startup for all properties in the entire application. Properties, even those defined in 3rd party jars, are discovered and values for them are loaded and validated.
If validation fails (as it did above), AndHow throws a RuntimeException to stop application startup and uses property metadata to generate specific error messages and (helpfully) sample configuration files. Here is an excerpt of the Java Properties file created when the code above failed validation:

# ######################################################################
# Property Group org.simple.GettingStarted

# COUNT_DOWN_START (Integer) NON-NULL - Start the countdown from this number
# The property value must be greater than or equal to 1
org.simple.GettingStarted.COUNT_DOWN_START = [Integer]

# LAUNCH_CMD (String) NON-NULL - What to say when its time to launch
# The property value must match the regex expression '.*Go.*'
org.simple.GettingStarted.LAUNCH_CMD = [String]

AndHow uses all of the provided metadata to create a detailed and well commented configuration file for your project.
Insert some real values into that file and place it on your classpath at /andhow.properties and it will automatically be discovered and loaded at startup. By default, AndHow discovers and loads configuration from seven common sources.
The default list of configuration loading, in order, is:

  1. Fixed values (explicitly set in code for AndHow to use)
  2. String[] arguments from the static void main() method
  3. System Properties (Like the one auto-generated above)
  4. Environmental Variables
  5. JNDI
  6. Java properties file on the filesystem (path must be specified)
  7. Java properties file on the classpath (defaults to /andhow.properties)

Property values are set on a first-win basis, so if a property is set as fixed value, that will take precedence over values passed in to the main method.
Values passed to the main method take precedence over system properties as so on.

For more examples and documentation, visit the AndHow main site

&?!

andhow's People

Contributors

ee-usgs avatar eeverman avatar carlschroedl avatar winsonrich avatar shouxian92 avatar mahewi avatar code4t2 avatar yirrilo avatar tpdavey avatar yeoji avatar zomzog avatar surajtripathy07 avatar shariktlt avatar mattkimmel avatar jr7square avatar chace86 avatar casva avatar arrodriguez avatar jnglman avatar ragrawal-bmc avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.