MyBatis
东语~
这个作者很懒,什么都没留下…
展开
-
MyBatis入门学习
本文主要介绍MyBatis的入门基础,转载博客的原文http://blog.csdn.net/huzheaccp/article/details/7399124 所需要jar包:mybatis-3.x.x.jar 、如果需要和spring整合,还需要加入相关的包 1:看项目目录 红颜色不要关心 2:按照步骤: 1:加入jar包 2:创建数据源(configuration.xml)转载 2016-01-26 18:10:51 · 426 阅读 · 0 评论 -
Spring整合Mybatis(MapperScannerConfigurer方式)
本文主要介绍spring整合myBatis,用jar包是:spring 4.1 + myBatis 3.2.2 + mybatis-spring 1.1。 项目的源码和jar包可以去我的资源下载 http://download.csdn.net/detail/psp0001060/9659564原创 2016-10-20 22:58:28 · 1259 阅读 · 0 评论 -
Intellij IDEA 中使用 MyBatis-generator 自动生成 MyBatis 代码
1、IDEA创建maven工程,工程图如下 2、 在maven项目的pom.xml 添加mybatis-generator-maven-plugin 插件和MySQL数据库驱动依赖 build> plugins> plugin> groupId>org.mybatis.generatorgroupId> artifactId>mybatis-gene原创 2018-01-22 10:59:57 · 868 阅读 · 0 评论 -
Mybatis 多对多关系
本文主要通过学生选课的场景,进行Mybatis多对多的案例介绍。 开发环境 idea mysql 工程代码下载地址 https://github.com/psp0001060/06_Mybatis_Many2Many.git 代码介绍 1.sql CREATE TABLE `course` ( `id` int(11) NOT NULL, `course_c...原创 2018-04-20 17:11:51 · 515 阅读 · 0 评论