构建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语句配置在外面还是注解在接口上,根据情况自行使用