Aipoのシステム設定の読み込み・書き出し

Aipoではシステム設定を保存するためにeip_m_configテーブルを利用しています。

AccountSharedDomainMap.map.xml

ここの値を操作するには、ALConfigServiceを利用します。

// システム設定の値を変更する
ALConfigService.put("hoge.fuga", "this is value");

// システム設定の値を読み込む
ALConfigService.get("hoge.fuga");
// --> "this is value"という値が返ってくる

参考