I have class Settings which stores my app's settings with static variables (to be "visible" from anywhere in app) and I would like to have functionality of saving/loading it.
simplified Settings class:
@XmlRootElement
@XmlAccessorType(XmlAccessType.NONE)
public class Settings {
@XmlElement
private static int option = 0;
private Settings() {
}
public static int getOption() {
return value;
}
public static void setOption(int option) {
Settings.value = option;
}
}
Code used to marshal:
public static void main(String[] args) throws JAXBException {
JAXBContext context = JAXBContext.newInstance(Settings.class);
Marshaller m = context.createMarshaller();
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
m.marshal(new Settings(), new File("c:\\test\\test.xml"));
}
And output xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<settings>
<option>0</option>
</settings>
Now the problem: when I change value of static int option by calling Settings.setOption(5); as shown below and do unmarshal, the result is Object with option same as actual Setting.option, which is 5.
Settings.setValue(5);
JAXBContext context = JAXBContext.newInstance(Settings.class);
Settings s2 = (Settings)context.createUnmarshaller().unmarshal(new File("c:\\test\\test.xml"));
// s2.option is 5, not 0!
I just hoped that after unmarshalling it would actually set all static variables of Setting to match with new created object "by nature", but it seems not.
Is there any way to achieve such behavior while preserving static variables? Or am I completely wrong about method of doing save/load of app settings? Please, help :)