jasmine214--love

只有当你的内心总是充满快乐、美好的愿望和宁静时,你才能拥有强壮的体魄和明朗、快乐或者宁静的面容。
posts - 731, comments - 60, trackbacks - 0, articles - 0
 
原文:http://chanson.javaeye.com/blog/164786
1、Spring+Hibernate配置起来很简单,具体就不细说了,网上多的是。

2、ZK显示页面
【query.zul】
<?xml version="1.0" encoding="UTF-8"?>
<window>
<button label="查询"></button>
<vbox>
  <listbox id="testListID" width="800px" rows="5" use="chanson.common.web.ui.ListTestBean">
    <listhead>
      <listheader label="姓名"/>
      <listheader label="性别"/>
      <listheader label="生日"/>
      <listheader label="薪资"/>
    </listhead>
    <listitem value="${each.id}" forEach="${testList}">
      <listcell label="${each.name}"/>
      <listcell label="${each.sex}"/>
      <listcell label="${each.birthday}"/>
      <listcell label="${each.money}"/>
    </listitem>
  </listbox>
</vbox>
</window>

《说明》:
A、<?xml version="1.0" encoding="UTF-8"?>
这个别忘记了,刚学的时候就是因为它报了不少错误。
B、use="chanson.common.web.ui.ListTestBean"
这个类就是衔接前后台的关键类。
C、${*.*}这个是标准的EL写法。


3、ListTestBean——最关键的衔接类
public class ListTestBean extends Listbox {

    public void onCreate() {
      ITestLogic testLogic = (ITestLogic) SpringFactory
  .getBeanFactory().getBean("testLogic");
      List testList = testLogic.find("from Test");
        Iterator it = testList.iterator();
        while(it.hasNext()) {
            Test test = (Test) it.next();
            Long id = test.getId();
            String name = test.getName();
            Integer sex = test.getSex();
            Date birthday =test.getBirthday();
            Double money = test.getMoney();      

            Listitem listitem = new Listitem();
            listitem.setValue(id);
            listitem.setParent(this);

            Listcell nameCell = new Listcell(name);
            Listcell sexCell = new Listcell(sex.toString());
            Listcell birthdayCell = new Listcell(birthday.toString());
            Listcell moneyCell = new Listcell(money.toString());
            nameCell.setParent(listitem);
            sexCell.setParent(listitem);
            birthdayCell.setParent(listitem);
            moneyCell.setParent(listitem);
        }
     }
}
《说明》:
A、例子是一个简单的查询,所以看起来也比较简单。
B、该类的作用有点像似servlet,只是省略了页面跳转
C、setter/getter真是麻烦,得找找更简洁的方法



【附录】
1)、数据库设计——test表
CREATE TABLE `test` (
  `id` decimal(22,0) NOT NULL default '0',
  `name` varchar(100) default NULL,
  `sex` int(1) default NULL,
  `birthday` datetime default NULL,
  `money` decimal(15,4) default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2)、其他应该没什么了吧?
3)、页面效果图
  • 描述: 页面效果图
  • 大小: 27.5 KB

只有注册用户登录后才能发表评论。


网站导航: