- 浏览: 4583 次
- 性别:
- 来自: 北京
最近访客 更多访客>>
最新评论
-
teddy.chiang:
thx....
propertyEditor工作方式 -
lsy:
好啊.我也基本有个了解了.谢谢
propertyEditor工作方式
文章列表
拿来主义
sql:
引用
1.Oracle:
select * from ( select row_.*, rownum rownum_ from ( query_SQL ); row_ where
rownum =< max); where rownum_ >= min
2.SQL Server:
select top @pagesize * from tablename where id not in
(select top @pagesize*(@page-1); id
from tablename order by id); order ...
- 2006-02-10 16:40
- 浏览 1759
- 评论(0)
没什么JAVA BEAN基础,看了看spring的beanwrapper
大概了解了propertyEditor的工作方式,主要关注convert string to object
记下来,省得用到时再乱找
步聚:
1,写出你要转换的bean及对应的propertyEditor(如:Person=>PersonEditor)
2,用PropertyEditorManager注册:
PropertyEditorManager.registerEditor(Person.class,PersonEditor.class);
3,你得到一个要转换的string,查出想转换成的bean ...
- 2006-02-10 16:20
- 浏览 2824
- 评论(2)