在MyBatis-Spring(一)基础上的改进:
1.1 在com.mapper.IMP下
@Repository:用于标注数据访问组件,即 DAO 组件
@Repository // 数据访问层:自动 new 一个 AccountMapperIMP,默认对象名字:accountMapperIMP'
public class AccountMapperIMP implements AccountMapper{
@Resource:按照 name 进行自动装配
@Resource // 默认安照名称进行装配(注入同name的值)
// 定义spring给mybatis提供的sqlsession对象
private SqlSessionTemplate sqlSessionTemplate;
// 把上一步骤的sqlSessionTemplate注入
1.2 在com.Service.IMP下
@Service:表示层组件
@Service // 表示层
public class AccountServiceImpl implements AccountService {
@Resource
private AccountMapper accountMapperIMP;
// // 把上一步骤的accountMapperIMP注入
2. ApplicationContext.xml中
2.1 增加两个
<!--全局注解参数-->
<context:annotation-config/>
<!--全局扫描包-->
<context:component-scan base-package="com"/>
2.2 删除两个IMP 的实例化
仅留下
<!-- 1.驱动管理数据源 -->
<!-- 2.sqlsessionfatorybean -->
<!-- 3.sqlsessionTemplate -->
3. Test
// 1.ApplicationContext
ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
// 2.AccountServiceImpl:注意这里的accountServiceImpl是默认的,AccountServiceImpl首字母变成小写
AccountServiceImpl service = (AccountServiceImpl) ac.getBean("accountServiceImpl");