mybatis的前身 是 ibatis
看下 ibatis落幕介绍:
ibatis 2002年创建,2010年退役。
https://ibatis.apache.org/
mybatis中文网:
https://mybatis.net.cn/index.html
mybatis 使用一 JAVA+MyBatis
这种使用 mybatis的方式,是最原始的,简单的,不需要 spring体系。 在 java 代码中使用 mybatis就能够完成数据库的 *** 作。java 即使不用mybatis 也可以使用 JDBC原生的api进行数据库 *** 作。这里使用 mybatis,就是体现了 mybatis最初的目的。所以,不管现在技术变化有多大,也离不开底层原理。
1. config
mybatis-config-test.xml 这个配置文件,是用来配置数据源及mapper映射文件等
2. mapper
mapper-test.xml 这个配置文件,就是用来写 sql语句的
3. pom配置
pom.xml 主要配置 mysql 驱动 和 mybatis 包即可。
尽管现在 数据库层相关的 技术很多,而最底层的 技术 也就是这两。
mysql
mysql-connector-java
runtime
org.mybatis
mybatis
4. java代码使用
非常简单,获取 config配置,构建一个 工厂类,使用工厂类获取 一个 session,利用session进行sql语句的执行。
public static void main(String[] args) throws Exception{
InputStream resource = Resources.getResourceAsStream("mybatis-config-test.xml");
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(resource);
SqlSession sqlSession = sqlSessionFactory.openSession();
Object o = sqlSession.selectOne("db-test.selectDemo");
System.out.println(o);
}
mybatis使用二 Java + spring + mybatis
pom依赖:
重要 的是加上这个依赖
org.mybatis
mybatis-spring
spring 配置文件
spring-c.xml 管理的比较关键的 bean对象
mapperv1-test.xml
sql映射文件
添加一个 *** 作接口
public interface DaoInterface {
public ZCourse selectDemo();
}
运行:
/**
* Java + Spring + Mybatis
*/
public class MyBatisTestV1 {
public static void main(String[] args) {
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring-c.xml");
Object dao = context.getBean("dao");
DaoInterface daoInterface = (DaoInterface) dao;
ZCourse zCourse = daoInterface.selectDemo();
System.out.println(zCourse);
}
}
上面是使用xml进行sql编写,也可以使用注解:
public interface DaoInterface {
public ZCourse selectDemo();
@Select("select * from z_course where id=1")
public ZCourse select();
}
mybatis使用三 spring boot 项目
pom文件加依赖:
org.mybatis.spring.boot
mybatis-spring-boot-starter
2.2.2
yml文件:
spring:
datasource:
url: jdbc:mysql://localhost:3306/wxjdb1
username: root
password:
driver-class-name: com.mysql.cj.jdbc.Driver
mybatis 使用四 爆米豆插件
然而,人是懒惰的,即使开发方式已经便捷到这种地步,人们还是不愿意,于是有了一种技术,可以省略sql的编写。
pom
com.baomidou
mybatis-plus-boot-starter
3.3.0
dao层接口
接口继承 BaseMapper 并制定表对应的实体类
@Mapper
@Repository
public interface ZCourseMapper extends BaseMapper {
}
使用:
zCourseMapper.selectOne(new QueryWrapper().eq("id", "1"));
spring boot 多数据源配置
pom依赖
com.baomidou
dynamic-datasource-spring-boot-starter
3.1.0
yml配置多数据源:
spring:
datasource:
dynamic:
primary: wxjdb1
datasource:
wxjdb1:
url: jdbc:mysql://localhost:3306/wxjdb1
username: root
password:
driver-class-name: com.mysql.cj.jdbc.Driver
test:
url: jdbc:mysql://localhost:3306/test
username: root
password:
driver-class-name: com.mysql.cj.jdbc.Driver
使用非常简单:
注解:
/**
* The core Annotation to switch datasource. It can be annotate at class or method.
*
* @author TaoYu Kanyuxia
* @since 1.0.0
*/
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DS {
/**
* groupName or specific database name or spring SPEL name.
*
* @return the database you want to switch
*/
String value();
}
使用上述注解,加载类或者方法上就就可以了。
1. 首先 正常编写功能
2. 再需要指定数据源的类或者方法上,加上 @DS("数据源名称")
第一种:加在方法上
@Mapper
@Repository
public interface ZCourseMapper extends BaseMapper {
@DS("test")
@Select("select * from z_course where id=1")
public ZCourse select();
}
第二中:加在类上
@DS("test")
@Service
public class DBService {
@Autowired
private ZCourseMapper zCourseMapper;
public void queryData(){
ZCourse zCourse = zCourseMapper.selectOne(new QueryWrapper().eq("id", "1"));
return;
}
}
以上简单介绍了 mybatis 一步步递进式的使用方式。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)