When using the @Service and @Management annotations is it possible to persist attributes when changed through the jmx-console?
Based on some prototyping it doesn't appear possible. Do I have to use good old xmbeans to do this?
@Service
@Management
class MyServiceBean implements MyService {
private String attributeOne;
// setter and getter
}