License |
License |
---|---|
Categories |
CategoriesNet config Application Layer Libs Configuration |
GroupId | GroupIdnet.sf.ssg.tools |
ArtifactId | ArtifactIdEasyConfig |
Last Version | Last Version0.1 |
Release Date | Release Date |
Type | Typejar |
Description |
DescriptionEasyConfig
EasyConfig provides simple way to overview and apply settings to file or folder based collections of files.
Synonyms to "setting" are property, attribute, value while throughout application "setting" is used.
The settings are groupped in "configuration" that is collection of settings from various sources.
Main design concepts are:
* minimalistic way to describe configuration
* pluggable support for data types (validation), setting sources, source handlers
Sample use case:
An application is deployed in multiple locations.
We need to quickly check key settings/parameters and optionally modify some of them.
These values are located in different places:
- in files directly in file structure
- in files inside archive files (optionally nested archives)
- values in DB tables
- values accessible via URLs
- other sources (just guessed: SSH/telnet connection+some command(s), UPnP devices, proprietary protocols, etc)
We gather info from any supported (extendable) source and can modify and apply changes if supported by source
(e.g. we can't update value that is count of rows in DB table, but we can read that value).
|
Project URL |
Project URL |
Source Code Management |
Source Code Management |
Filename | Size |
---|---|
EasyConfig-0.1.pom | |
EasyConfig-0.1.jar | 183 KB |
EasyConfig-0.1-sources.jar | 128 KB |
EasyConfig-0.1-javadoc.jar | 554 KB |
Browse |
<!-- https://jarcasting.com/artifacts/net.sf.ssg.tools/EasyConfig/ -->
<dependency>
<groupId>net.sf.ssg.tools</groupId>
<artifactId>EasyConfig</artifactId>
<version>0.1</version>
</dependency>
// https://jarcasting.com/artifacts/net.sf.ssg.tools/EasyConfig/
implementation 'net.sf.ssg.tools:EasyConfig:0.1'
// https://jarcasting.com/artifacts/net.sf.ssg.tools/EasyConfig/
implementation ("net.sf.ssg.tools:EasyConfig:0.1")
'net.sf.ssg.tools:EasyConfig:jar:0.1'
<dependency org="net.sf.ssg.tools" name="EasyConfig" rev="0.1">
<artifact name="EasyConfig" type="jar" />
</dependency>
@Grapes(
@Grab(group='net.sf.ssg.tools', module='EasyConfig', version='0.1')
)
libraryDependencies += "net.sf.ssg.tools" % "EasyConfig" % "0.1"
[net.sf.ssg.tools/EasyConfig "0.1"]
Group / Artifact | Type | Version |
---|---|---|
junit : junit | jar | 4.8.1 |
mysql : mysql-connector-java | jar | 5.1.13 |