SSH框架现在应用非常广泛,一般的中小项目,大多都会使用Spring和MyBatis。两者结合轻便好使,易上手。今天小博老师给大家介绍Spring和Mybatis结合的方式之一,使用MapperScannerConfigurer的配置方式。
1.首先建立项目,下载Spring和Mybatis必须的jar包,如下图所示:
2.建立spring-mybatis.xml文件,内容如下所示:
3.建立Mapper xml文件:
4.建立Dao接口类:
package com.bwf.dao
@MapperScan
public interface GendarDao {
Gendar getGendar(int id);
}
GendarDao所在的包名和类名必须与mapper文件的namespace一致。相关方法名必须和mapper中的映射文件中的id同名。@MapperScan会去映射文件中查找id为com.bwf.dao.GendarDao.getGendar,即this.getClass().getName()+".getGendar"的SQL方法。