Configuration Setting Class code example
Example 1: add settings to config file c#
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="Key0" value="0" />
<add key="Key1" value="1" />
<add key="Key2" value="2" />
</appSettings>
</configuration>
using System.Configuration;
using System.Collections.Specialized;
string sAttr = ConfigurationManager.AppSettings.Get("Key0");
Example 2: spring boot configuration property bean at class path
org/springframework/cloud/autoconfigure/ConfigurationPropertiesRebinderAutoConfiguration.class