SpringMVC+MyBatis 加注解的方式,注意配置SpringMvc的配置文件,开启注解扫描的时候对service的处理:
<context:component-scan base-package="com.fh" >
<context:exclude-filter type="annotation"
expression="org.springframework.stereotype.Service" />
</context:component-scan>
以上红色内容注意,不然会造成事务失效。