這是一個mybatis的加強工具包,好處請你們自行去官方文檔查閱,這裏就再也不贅述了。文檔連接:http://mp.baomidou.com/#/?id=%e7%ae%80%e4%bb%8b前端
/* Navicat MySQL Data Transfer Source Server : localhost_3306 Source Server Version : 50716 Source Host : localhost:3306 Source Database : demo Target Server Type : MYSQL Target Server Version : 50716 File Encoding : 65001 Date: 2017-07-25 16:21:58 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `user` -- ---------------------------- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` int(10) NOT NULL COMMENT '主鍵ID', `name` varchar(30) DEFAULT NULL COMMENT '名稱', `age` int(11) DEFAULT NULL COMMENT '年齡', `phone` varchar(11) DEFAULT NULL COMMENT '手機號碼', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Records of user -- ---------------------------- INSERT INTO `user` VALUES ('1', '張三', '17', '12345678'); INSERT INTO `user` VALUES ('2', '李四', '17', '12345678'); INSERT INTO `user` VALUES ('3', '王五', '17', '12345678');
IntelliJ IDEA是很是流行的IDE,IntelliJ IDEA 從14.1已經支持Spring Boot了。java
在File菜單裏面選擇 New > Project,而後選擇Spring Initializr,接着一步步操做便可,很方便。mysql
建立成功以後,配置pom.xml文件和application.yml文件web
1.pom.xmlspring
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.tout</groupId> <artifactId>demo</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>war</packaging> <name>demo</name> <description>Demo project for Spring Boot</description> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.4.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <velocity.version>1.7</velocity.version> <mybatisplus-spring-boot-starter.version>1.0.1</mybatisplus-spring-boot-starter.version> <mybatisplus.version>2.1-gamma</mybatisplus.version> <fastjson.version>1.2.31</fastjson.version> <mysql-connector-java.version>5.1.38</mysql-connector-java.version> <druid.version>1.1.1</druid.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>${mysql-connector-java.version}</version> </dependency> <!-- druid阿里巴巴數據庫鏈接池 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>${druid.version}</version> </dependency> <!-- 模板引擎 --> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>${velocity.version}</version> </dependency> <!-- mybatis-plus begin --> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatisplus-spring-boot-starter</artifactId> <version>${mybatisplus-spring-boot-starter.version}</version> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus</artifactId> <version>${mybatisplus.version}</version> </dependency> <!-- mybatis-plus end --> <!-- fastjson阿里巴巴jSON處理器 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>${fastjson.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
2.application.ymlsql
#server server: address: 192.168.3.77 context-path: /demo/ port: 9090 session-timeout: 30 tomcat.max-threads: 0 tomcat.uri-encoding: UTF-8 error: path: /error #jdbc_config spring: datasource: url: jdbc:mysql://127.0.0.1:3306/demo?characterEncoding=utf8 username: root password: 123456 driverClassName: com.mysql.jdbc.Driver type: com.alibaba.druid.pool.DruidDataSource #druid_config validation-query: "SELECT 'X' FROM DUAL" max-wait: 10000 #最大創建鏈接等待時間。若是超過此時間將接到異常。設爲-1表示無限制 max-idle: 10 #最大空閒數,數據庫鏈接的最大空閒時間。超過空閒時間,數據庫鏈接將被釋放。設爲0表示無限制 min-idle: 5 ##最小空閒鏈接:鏈接池中允許保持空閒狀態的最小鏈接數量,低於這個數量將建立新的鏈接 max_active: 50 ##鏈接池的最大數據庫鏈接數。設爲0表示無限制 initial-size: 5 #初始化鏈接:鏈接池啓動時建立的初始化鏈接數量 test-on-borrow: false test-while-idle: true remove_abandoned: true #超過removeAbandonedTimeout時間後,是否進 行沒用鏈接(廢棄)的回收(默認爲false,調整爲true) remove_abandoned_timeout: 180 #超過期間限制,回收沒有用(廢棄)的鏈接(默認爲 300秒,調整爲180) time-between-eviction-runs-millis: 18800 pool-prepared-statements: true max-pool-prepared-statement-per-connection-size: 20 connection-properties: config.decrypt=true;druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000 filters: stat,wall,log4j2 #view mvc: view: prefix: /WEB-INF/view/ suffix: .jsp #mybatis mybatis-plus: mapper-locations: classpath:/mapper/*Mapper.xml typeAliasesPackage: com.tout.demo.entity global-config: #主鍵類型 0:"數據庫ID自增", 1:"用戶輸入ID",2:"全局惟一ID (數字類型惟一ID)", 3:"全局惟一ID UUID"; id-type: 2 #字段策略 0:"忽略判斷",1:"非 NULL 判斷"),2:"非空判斷" field-strategy: 2 #駝峯下劃線轉換 db-column-underline: true #刷新mapper 調試神器 refresh-mapper: true #數據庫大寫下劃線轉換 #capital-mode: true #序列接口實現類配置 #key-generator: com.tout.demo.xxx #邏輯刪除配置 #logic-delete-value: 0 #logic-not-delete-value: 1 #自定義填充策略接口實現 #meta-object-handler: com.tout.demo.xxx #自定義SQL注入器 #sql-injector: com.tout.demo.xxx configuration: map-underscore-to-camel-case: true cache-enabled: false #logging logging: level: warn file: ./logs/spring-boot-logging.log
@Configuration @MapperScan("com.tout.demo.mapper*") public class MybatisPlusConfig { /** * mybatis-plus分頁插件<br> */ @Bean public PaginationInterceptor paginationInterceptor() { return new PaginationInterceptor(); } }
###** 5、使用mybatis-plus的代碼生成插件**數據庫
/** * <p> * 代碼生成器演示 * </p> */ public class MpGenerator { /** * <p> * MySQL 生成演示 * </p> */ public static void main(String[] args) { AutoGenerator mpg = new AutoGenerator(); // 全局配置 GlobalConfig gc = new GlobalConfig(); gc.setOutputDir("D://"); gc.setFileOverride(true); gc.setActiveRecord(true); gc.setEnableCache(false);// XML 二級緩存 gc.setBaseResultMap(true);// XML ResultMap gc.setBaseColumnList(false);// XML columList gc.setAuthor("Tout-An"); // 自定義文件命名,注意 %s 會自動填充表實體屬性! // gc.setMapperName("%sDao"); // gc.setXmlName("%sDao"); // gc.setServiceName("MP%sService"); // gc.setServiceImplName("%sServiceDiy"); // gc.setControllerName("%sAction"); mpg.setGlobalConfig(gc); // 數據源配置 DataSourceConfig dsc = new DataSourceConfig(); dsc.setDbType(DbType.MYSQL); dsc.setTypeConvert(new MySqlTypeConvert(){ // 自定義數據庫表字段類型轉換【可選】 @Override public DbColumnType processTypeConvert(String fieldType) { System.out.println("轉換類型:" + fieldType); // 注意!!processTypeConvert 存在默認類型轉換,若是不是你要的效果請自定義返回、非以下直接返回。 return super.processTypeConvert(fieldType); } }); dsc.setDriverName("com.mysql.jdbc.Driver"); dsc.setUsername("root"); dsc.setPassword("123456"); dsc.setUrl("jdbc:mysql://127.0.0.1:3306/demo?characterEncoding=utf8"); mpg.setDataSource(dsc); // 策略配置 StrategyConfig strategy = new StrategyConfig(); // strategy.setCapitalMode(true);// 全局大寫命名 ORACLE 注意 // strategy.setTablePrefix(new String[] { "tlog_", "tsys_" });// 此處能夠修改成您的表前綴 strategy.setNaming(NamingStrategy.underline_to_camel);// 表名生成策略 strategy.setInclude(new String[] { "user" }); // 須要生成的表 // strategy.setExclude(new String[]{"test"}); // 排除生成的表 // 自定義實體父類 // strategy.setSuperEntityClass("com.tout.demo.TestEntity"); // 自定義實體,公共字段 // strategy.setSuperEntityColumns(new String[] { "test_id", "age" }); // 自定義 mapper 父類 // strategy.setSuperMapperClass("com.tout.demo.TestMapper"); // 自定義 service 父類 // strategy.setSuperServiceClass("com.tout.demo.TestService"); // 自定義 service 實現類父類 // strategy.setSuperServiceImplClass("com.tout.demo.TestServiceImpl"); // 自定義 controller 父類 // strategy.setSuperControllerClass("com.tout.demo.TestController"); // 【實體】是否生成字段常量(默認 false) // public static final String ID = "test_id"; // strategy.setEntityColumnConstant(true); // 【實體】是否爲構建者模型(默認 false) // public User setName(String name) {this.name = name; return this;} // strategy.setEntityBuilderModel(true); mpg.setStrategy(strategy); // 包配置 PackageConfig pc = new PackageConfig(); pc.setParent("com"); pc.setModuleName("tout"); mpg.setPackageInfo(pc); // 注入自定義配置,能夠在 VM 中使用 cfg.abc InjectionConfig cfg = new InjectionConfig() { @Override public void initMap() { Map<String, Object> map = new HashMap<>(); map.put("abc", this.getConfig().getGlobalConfig().getAuthor() + "-mp"); this.setMap(map); } }; mpg.setCfg(cfg); // 自定義模板配置,能夠 copy 源碼 mybatis-plus/src/main/resources/templates 下面內容修改, // 放置本身項目的 src/main/resources/templates 目錄下, 默認名稱一下能夠不配置,也能夠自定義模板名稱 // TemplateConfig tc = new TemplateConfig(); // tc.setController("..."); // tc.setEntity("..."); // tc.setMapper("..."); // tc.setXml("..."); // tc.setService("..."); // tc.setServiceImpl("..."); // 如上任何一個模塊若是設置 空 OR Null 將不生成該模塊。 // mpg.setTemplate(tc); // 執行生成 mpg.execute(); // 打印注入設置 System.err.println(mpg.getCfg().getMap().get("abc")); } }
執行代碼後會生成以下結構:apache
將相應模塊代碼稍微修改下,放入項目就能夠了json
/** * <p> * Mapper 接口 * </p> * * @author Tout-An * @since 2017-07-25 */ public interface UserMapper extends BaseMapper<User> { }
打開你會發現mapper裏面是空的,那是由於mybatis-plus已經幫咱們把一些經常使用的通用的增刪改查的代碼,還有對分頁查詢的處理全都封裝在BaseMapper裏了,簡化了咱們的開發代碼量。api
/** * <p> * 前端控制器 * </p> * * @author Tout-An * @since 2017-07-25 */ @RestController @RequestMapping("/user") public class UserController { @Autowired private IUserService userService; /** * 分頁 PAGE */ @GetMapping("/list")//等同於@RequestMapping(value = "/list",method = RequestMethod.GET) public Page<User> list() { return userService.selectPage(new Page<>(0, 12)); } /** * 添加 */ @PostMapping("/add") public Object add() { User user = new User(1, "張三", 17, "12345678"); JSONObject result = new JSONObject(); result.put("result", userService.insert(user)); return result; } /** * 刪除 */ @PostMapping("/del") public Object del() { JSONObject result = new JSONObject(); result.put("result", userService.deleteById(1)); return result; } /** * 更新 */ @PostMapping("/upd") public Object upd() { User user = new User(1, "張三1", 17, "12345678"); JSONObject result = new JSONObject(); result.put("result", userService.insertOrUpdate(user)); return result; } /** * 查詢 */ @GetMapping("/query") public Object query() { JSONObject result = new JSONObject(); result.put("result", userService.selectById(1)); return result; } /** * 添加 */ @PostMapping("/addBatch") public Object addBatch() { List<User> list = new ArrayList<>(); User user = new User(2, "李四", 17, "12345678"); list.add(user); user = new User(3, "王五", 17, "12345678"); list.add(user); JSONObject result = new JSONObject(); result.put("result", userService.insertBatch(list)); return result; } }
直接運行Application.java啓動項目,項目會運行在springboot內嵌的web容器中。