Skip to content
This repository was archived by the owner on Sep 15, 2024. It is now read-only.

Repository files navigation

stringproperties

StringProperties is Java Properties with Extra Features. Open Source Java project under Apache License v2.0

Current Stable Version is 1.0.1


DOC

Usage Example

importorg.javastack.stringproperties.StringProperties;
publicclassExample {
publicstaticvoidmain(finalString[] args) throwsThrowable {
StringPropertiesp = newStringProperties();
p.setProperty("state", "awake");
p.setProperty("msg", "Hi ${user.name}, how are you ${state}?");
System.out.println(p.getPropertyEval("msg"));
}
}

MAVEN

Add the dependency to your pom.xml:

<dependency>
<groupId>org.javastack</groupId>
<artifactId>stringproperties</artifactId>
<version>1.0.1</version>
</dependency>

Inspired in Java Properties and Spring-Placeholders.

About

StringProperties is a Java Properties with Extra features (like ${placeholders})

Topics

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages