I want to have short names for classes, now i can do it with aliases
XStream x = new XStream();
x.alias("dic", Dic.class);
but i have to define alias manually for every class, is there any way to configure xstream to do it automatically?
|
1
|
I want to have short names for classes, now i can do it with aliases
but i have to define alias manually for every class, is there any way to configure xstream to do it automatically?
|
|||
|
|
|
|
Internally, XStream uses its |
||||||
|
|
|
The only other alternative is to use XStream annotations:
Then, in your code where you configure XStream:
The problem, however, is that in order to deserialize your classes XStream has to know their aliases already, so I've ended up tagging all the classes I need serialized (several choices here: annotate them via XStream or your own annotation; have them implement marker interface; grab all the classes from particular package(s)), autodetecting them on load and explicitly configuring XStream instance to alias them as class name without package name. |
||||
|