Skip to content
/ yml2prop Public

A Java lib to convert yml file to properties file and vice versa for spring boot applications mostly

License

Notifications You must be signed in to change notification settings

omidp/yml2prop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yml2prop

A Java lib to convert yml file to properties file and vice versa for spring boot applications mostly.

How to build

mvn clean install -DskipTests=true

How to use

Converter ymlToPropertiesConverter = new YmlToPropertiesConverter();
		ymlToPropertiesConverter.convert(
		ConverterTest.class.getResourceAsStream("/application.yml"), System.out);
    
    Converter ymlToPropertiesConverter = new PropertiesToYmlConverter();
		ymlToPropertiesConverter.convert(
		ConverterTest.class.getResourceAsStream("/application.properties"), System.out);

About

A Java lib to convert yml file to properties file and vice versa for spring boot applications mostly

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages