Giter Club home page Giter Club logo

etcd_preferences's Introduction

java.util.prefs ETCD preferences implementation

A Java Util Preferences etcd backend implementation.

Why?

Etcd is one of the main configuration cloud oriented key/value backends. The java applications will need to

With this implementation the java applications will, transparently, use etcd as backend to store and retrieve application configuration vĂ­a java.util.prefs.

A sample, get the application database driver and url from application preferences:

Preferences applicationPref = Preferences.systemRoot();
String driver = userPrefs.get("database.driver", "org.postgresql.Driver");
String url    = userPrefs.get("database.url",    "jdbc:postgresql://localhost:5740/myDb");

This implementation abstracts the application the problems about interact with etcd, use and standard Java API and does not require to use external libraries.

Requisites

  • JDK Java 8
  • Maven 3.2.x

Links

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.