spring-mybatis获取mapper的四种方式汇总
作者:不过普通话一乙不改名 时间:2023-11-23 06:24:39
spring-mybatis获取mapper方式汇总
项目背景:
pojo下面有一个user实体类
Dao包下面写了usermapper.xml 和usermapper.interface,其中只有一个方法查询数据库中所有的 用户。
1.用实现类获取这个用户
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=utf8"/>
<property name="username" value="root"/>
<property name="password" value="root"/>
</bean>
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="configLocation" value="classpath:mybatis-config.xml"/>
</bean>
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
<constructor-arg index="0" ref="sqlSessionFactory"/>
</bean>
<!--注册实现类usermapperimpl-->
<bean id="userMapper" class="com.kuang.mapper.UserMapperImpl">
<property name="sqlSession" ref="sqlSession"/>
</bean>
实现类usermapperImpl:
public class UserMapperImpl implements UserMapper {
private SqlSessionTemplate sqlSession;
public List<User> selectAllUser() {
return sqlSession.getMapper(UserMapper.class).selectAllUser();
}
public void setSqlSession(SqlSessionTemplate sqlSession) {
this.sqlSession = sqlSession;
}
}
test测试:
@Test
public void test2(){
ApplicationContext app = new ClassPathXmlApplicationContext("spring-dao.xml");
UserMapperImpl userMapper = app.getBean(UserMapperImpl.class);
List<User> users = userMapper.selectAllUser();
for (User user : users) {
System.out.println(user);
}
}
2.SqlSessionDaoSupport获取
public class UserMapperImpl1 extends SqlSessionDaoSupport implements UserMapper {
public List<User> selectAllUser() {
return getSqlSession().getMapper(UserMapper.class).selectAllUser();
}
}
bean的注册:
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="configLocation" value="classpath:mybatis-config.xml"/>
</bean>
<bean id="userimpl1" class="com.kuang.mapper.UserMapperImpl1">
<property name="sqlSessionFactory" ref="sqlSessionFactory"/>
</bean>
3.MapperFactoryBean
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=utf8"/>
<property name="username" value="root"/>
<property name="password" value="root"/>
</bean>
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="configLocation" value="classpath:mybatis-config.xml"/>
</bean>
<bean id="userimpl" class="org.mybatis.spring.mapper.MapperFactoryBean">
<property name="mapperInterface" value="com.kuang.mapper.UserMapper"/>
<property name="sqlSessionFactory" ref="sqlSessionFactory"/>
</bean>
测试:
@Test
public void test3(){
ApplicationContext app = new ClassPathXmlApplicationContext("spring-dao.xml");
UserMapper userMapper = app.getBean(UserMapper.class);
// UserMapper userMapper = app.getBean("userimpl");
List<User> users = userMapper.selectAllUser();
for (User user : users) {
System.out.println(user);
}
}
在使用这个MapperFactoryBean方式的时候,通过app有两种方式获取bean,一种是id然后强转,另一种是接口的类型class。
4.MapperScannerConfigurer
xml配置
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=utf8"/>
<property name="username" value="root"/>
<property name="password" value="root"/>
</bean>
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="configLocation" value="classpath:mybatis-config.xml"/>
</bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.kuang.mapper"/>
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
</bean>
test:
@Test
public void test4(){
ApplicationContext app = new ClassPathXmlApplicationContext("spring-dao.xml");
UserMapper bean = app.getBean(UserMapper.class);
for (User user : bean.selectAllUser()) {
System.out.println(user);
}
}
mybatis的mapper注解
从mybatis3.4.0开始加入了@Mapper注解,目的就是为了不再写mapper映射文件(那个xml写的是真的无语。。。)。很恶心的一个事实是源码中并没有对于这个注解的详细解释
在 Spring 程序中,Mybatis 需要找到对应的 mapper,在编译的时候动态生成代理类,实现数据库查询功能,所以我们需要在接口上添加 @Mapper 注解。
@Mapper
public interface UserDao {
...
}
但是,仅仅使用@Mapper注解,我们会发现,在其他变量中依赖注入,IDEA 会提示错误,但是不影响运行(亲测~)。
因为我们没有显式标注这是一个 Bean,IDEA 认为运行的时候会找不到实例注入,所以提示我们错误。
如下图,会有红色波浪线。
尽管这个错误提示并不影响运行,但是看起来很不舒服,所以我们可以在对应的接口上添加 bean 的声明,如下:
@Repository // 也可以使用@Component,效果都是一样的,只是为了声明为bean
@Mapper
public interface UserDao {
@Insert("insert into user(account, password, user_name) " +
"values(#{user.account}, #{user.password}, #{user.name})")
int insertUser(@Param("user") User user) throws RuntimeException;
}
基于注解的开发也有其他手段帮助 Mybatis 找到 mapper,那就是 @MapperScan 注解,可以在启动类上添加该注解,自动扫描包路径下的所有接口。
@SpringBootApplication
@MapperScan("com.scut.thunderlearn.dao")
public class UserEurekaClientApplication {
public static void main(String[] args) {
SpringApplication.run(UserEurekaClientApplication.class, args);
}
}
但是感觉有些麻烦。
来源:https://blog.csdn.net/weixin_44007213/article/details/118577069
标签:spring,mybatis,mapper
0
投稿
猜你喜欢
springboot加载复杂的yml文件获取不到值的解决方案
2021-07-29 18:26:11
tk.mybatis如何扩展自己的通用mapper
2022-02-16 04:10:17
一文搞懂Spring循环依赖的原理
2023-07-24 19:03:24
Javaweb获取表单数据的多种方式
2022-12-25 18:13:41
Android编程之绘图canvas基本用法示例
2022-08-21 15:02:23
apllo开源分布式配置中心详解
2022-01-25 22:39:01
SpringBoot整合ES-Elasticsearch的实例
2022-12-29 03:30:40
Android 悬浮窗权限各机型各系统适配大全(总结)
2022-04-27 10:09:53
Java实现分页的前台页面和后台代码
2021-07-22 17:10:04
C#动态编译并执行字符串样例
2022-02-10 22:26:53
c#入门之分支语句使用方法(三元运算符、if语句、switch语句)
2021-12-06 00:55:20
Java类中字段可以不赋予初始值的原因分析
2023-01-05 15:55:49
Java线程池用法实战案例分析
2022-01-22 07:57:16
RxJava2.x实现定时器的实例代码
2023-08-06 17:41:01
myeclipse安装Spring Tool Suite(STS)插件的方法步骤
2023-02-22 00:56:02
C#使用GDI+创建缩略图实例
2023-02-21 01:57:16
Java 类加载机制详细介绍
2023-12-19 13:55:59
C#生成指定范围内的不重复随机数
2021-10-01 13:49:26
浅谈maven的jar包和war包区别 以及打包方法
2022-07-20 20:14:44
Android实现简单的分批加载ListView
2023-10-28 14:49:21