AEP 용어 정리 - YooYoungmo/AEP GitHub Wiki
activeProfile
System property로 전달되는 (옵션 -Dapp.env.profile.active) 값에 대한 명칭
configProfile
app-config.json에 profile 속성에 대한 명칭
configValue
유저가 관리하는 config 정보의 최상위 레벨 Key/value 묶음.
default ConfigValue
activeProfile로 지정된 configValue에 유저가 요청한 key가 없는 경우 default configValue에서 key에 해당하는 configValue를 찾아 반환해준다.
/* configValue 예) myKey */
{
"default" : {
,"myKey": {
"url": "http://aep.com",
}
}
, "profile": {
"stage" : {
"dev": {
"myKey": {
"url": "http://dev.aep.com",
}
}
, "prod": {
"myKey": {
"url": "http://prod.aep.com",
}
}
}
}
}