摘要: 我们在没有用注解写spring配置文件的时候:会在spring配置文件中定义Dao层的bean,这样我们在service层中,写setDao方法,就可以直接通过接口调用Dao层。用了注解写法后: 在配置文件中不用再写Dao层的bean。只需要在Dao实现类中加入@Repositorypublic Class TestDaoImpl(){}在service层定义 @Autowired private TestDao testDao;不需要再写setDao方法就可以通过接口调用Dao了 在Service层加入@servicepublic Class TestService(){}这样action中 阅读全文
posted @ 2014-03-13 10:11 adrianlamo 阅读(224) 评论(0) 推荐(0) 编辑