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.
在了解 Spring 中的数据绑定时,我开始知道 PropertyEditors 是有状态的,这里的有状态是什么意思?
这是该文档的链接
http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/beans/factory/config/CustomEditorConfigurer.html
有状态意味着无论何时您更改对象(例如使用 set() 方法设置成员的值),这些更改都是持久的。下次您使用 PropertyEditor 时,它将具有与以前相同的状态 - 框架不会为每个请求创建您的 PropertyEditor 类的新实例。