All Downloads are FREE. Search and download functionalities are using the official Maven repository.

i.kiwi-boot.0.1.0.source-code.module-info Maven / Gradle / Ivy


/**
 * Kiwi Boot is tiny opinionated configuration framework modeled after Spring
 * Boot that uses Kiwi KVS system to load key values into Map. It is made to be
 * a slightly better {@link System#getProperties()}.
 * 

* Features are purposely very limited. *

* The loading is as follows: *

    *
  1. System.getProperties and System.getEnv are load for interpolation.
  2. *
  3. Resource classpath:/application.properties is loaded (but not required)
  4. *
  5. Resource profile.classpath:/application__PROFILE__.properties is loaded (but not required) *
  6. *
* @see io.jstach.kiwi.boot.KiwiConfig */ module io.jstach.kiwi.boot { exports io.jstach.kiwi.boot; requires io.jstach.kiwi.kvs; requires static org.jspecify; /* * I cannot remember if JLink will pull this in or not. */ requires static java.management; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy