讲的很清晰明白,大赞!但是最关注的两点没有提到:1.为什么只继承接口就可以完成bean的定义?这个可以讲解一下原理,奇迹产生的地方。2.最后jpa那块过滤、排序、分页的接口设计的那么复杂,spring data是怎么考虑的? 明明可以简单的
还是觉得使用MyBatis写SQL语句查询更实在, 这里面都是单表查询, 实际开发中基本上都是多表查询
2017-11-20
已采纳回答 / 嘿不溜秋
这个错误的提示很明显了,你的spring的bean配置文件中没有id为transactionManager的bean但,或者是引用到它的地方名字可能没有和它的id(bean的id)一致
2017-11-19
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd" >
</beans>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd" >
</beans>
2017-11-06