首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

构建Mybatis项目(4)

2012-11-11 
构建Mybatis项目(四)使用spring完成传统的dao层加biz(service层)新建org.test.spring.service和org.test.s

构建Mybatis项目(四)
使用spring完成传统的dao层加biz(service层)
新建org.test.spring.service和org.test.spring.service.impl包
新建接口PeopleService,代码如下:



在Main类中添加代码:
PeopleService pse=(PeopleService)ac.getBean("peopleService");People people=pse.selectOneById(5);System.out.println(people.getRealName());

如此,变相使用了sqlSession来完成了service层,当然以上所述直接跳过了dao层.
至于sql语句配置在外面还是注解在接口上,根据情况自行使用

热点排行