Код: Выделить всё
Hello
Код: Выделить всё
map.message
Код: Выделить всё
@XStreamAlias("value")
@XStreamConverter(value = ToAttributedValueConverter.class, strings = "text")
class ValueNode {
private String text;
@XStreamImplicit
private ExpressionNode node;
// setter / getter
}
@XStreamAlias("expression")
@XStreamConverter(value = ToAttributedValueConverter.class, strings = "text")
class ExpressionNode {
private String text;
// setter / getter
}
ValueNode.text
ValueNode. node
ExpressionNode.text
Шаблон 1
"Привет"
null
-
Шаблон 2
"\n\t\n"
null
-
Ожидаемые данные после демаршаллинга
ValueNode.text
ValueNode.node
ExpressionNode.text
Шаблон 1
"Привет"
null
-
< /tr>
Шаблон 2
null
Экземпляр
"map.message"
Подробнее здесь: https://stackoverflow.com/questions/787 ... ut-its-not