Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
struts 2中是什么 PropertyChangeSupport 以及 VetoableChangeSupport 使用什么Basemodel
PropertyChangeSupport
VetoableChangeSupport
Basemodel
如果要执行任何操作,当 bean 中的属性发生更改时,请使用 ChangeSupport。
您注册监听器和源(bean),其属性/属性被监视更改。
VetoableChangeSupport 用于受约束的属性,因此您在实际设置属性的新值之前触发 VetoableChange(调用侦听器)。
PropertyChangeSupport 用于绑定属性,因此在为属性设置新值后触发 PropertyChange。
请检查 jdk 中提供的示例。