是否可以在 XML 层次结构中设置和检索默认值。
<commission-rate>
<region-NA> <!-- can we set a default at this level, if userId is NOT 123, it should return this default -->
<userId-123>
9
</userId-123>
</region-NA>
</commission-rate>
例如,如果我想检索 Commission-rate.region-NA,它应该返回默认值(比如 5),但 Commission-rate.region-NA.userId-123 应该将 9 作为值。
此外,是否使用推荐的 XML 标签,或者我应该使用命名属性(例如
提前致谢。