| Лицензия |
Лицензия |
|---|---|
| Категории |
КатегорииСеть config Библиотеки уровня приложения Configuration |
| Группа | Группаnet.sf.ssg.tools |
| Идентификатор | ИдентификаторEasyConfig |
| Последняя версия | Последняя версия0.1 |
| Дата | Дата |
| Тип | Типjar |
| Описание |
ОписаниеEasyConfig
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).
|
| Ссылка на сайт |
Ссылка на сайт |
| Система контроля версий |
Система контроля версий |
| Имя Файла | Размер |
|---|---|
| EasyConfig-0.1.pom | |
| EasyConfig-0.1.jar | 183 KB |
| EasyConfig-0.1-sources.jar | 128 KB |
| EasyConfig-0.1-javadoc.jar | 554 KB |
| Обзор |
<!-- 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"]
| Идентификатор библиотеки | Тип | Версия |
|---|---|---|
| junit : junit | jar | 4.8.1 |
| mysql : mysql-connector-java | jar | 5.1.13 |