All Projects → Youmoo → mybatis-generator

Youmoo / mybatis-generator

Licence: other
MyBatis code generator

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to mybatis-generator

Mybatis Plus Example
SpringBoot整合MyBatis-Plus,源码学习,增删改查,Lamdba支持
Stars: ✭ 128 (+412%)
Mutual labels:  mybatis, mybatis-generator
Spring Cloud Shop
spring cloud 版分布式电商项目,全力打造顶级多模块,高可用,高扩展电商项目
Stars: ✭ 248 (+892%)
Mutual labels:  mybatis, mybatis-generator
Spring Boot Vue Bank
我,请始皇[打钱]是一个前后端分离的工具人系统,项目采用 SpringBoot+Go+Vue 开发,项目加入常见的企业级应用所涉及到的技术点,例如 Redis、RabbitMQ 等(主要是多用用工具多踩踩坑)。
Stars: ✭ 157 (+528%)
Mutual labels:  mybatis, mybatis-generator
Eshop Soa
EShop基于Dubbo实现SOA服务化拆分,并基于RocketMQ解决了分布式事务(新版SpringBootSOASkeleton)
Stars: ✭ 65 (+160%)
Mutual labels:  mybatis, mybatis-generator
mybatis-generator-gui-plus
基于MyBatis-Generator+SQLite+beautyeye_lnf开发的一款图形化代码生成器
Stars: ✭ 16 (-36%)
Mutual labels:  mybatis, mybatis-generator
Mybatiscodehelper Pro
brucege.com
Stars: ✭ 1,565 (+6160%)
Mutual labels:  mybatis, mybatis-generator
Roncoo Mybatis Generator
龙果开源-Mybatis代码自动生成工具
Stars: ✭ 165 (+560%)
Mutual labels:  mybatis, mybatis-generator
Mybatis Generator Gui Extension
图形化MBG,内置丰富插件,可生成Service、Controller、View,配置简单。 A powerful GUI tool for MyBatisGenerator(MBG)
Stars: ✭ 583 (+2232%)
Mutual labels:  mybatis, mybatis-generator
lightbatis
Lightbatis 增强 MyBatis 版Java 数据库持久层,更简洁并易用
Stars: ✭ 52 (+108%)
Mutual labels:  mybatis, mybatis-generator
IDEAPractice
Java练习 - Java基础知识,面试题,小demo,长期积累 | intellij idea + maven + tomcat
Stars: ✭ 45 (+80%)
Mutual labels:  mybatis, mybatis-generator
Mybatis Generator Plugin
Mybatis Generator 代码生成插件拓展,增加:查询单条数据插件(SelectOneByExamplePlugin)、MySQL分页插件(LimitPlugin)、数据Model链式构建插件(ModelBuilderPlugin)、Example Criteria 增强插件(ExampleEnhancedPlugin)、Example 目标包修改插件(ExampleTargetPlugin)、批量插入插件(BatchInsertPlugin)、逻辑删除插件(LogicalDeletePlugin)、数据Model属性对应Column获取插件(ModelColumnPlugin)、存在即更新(UpsertPlugin)、Selective选择插入更新增强插件(SelectiveEnhancedPlugin)、Table增加前缀插件(TableSuffixPlugin)、自定义注释插件(CommentPlugin)、增量插件(IncrementsPlugin)、查询结果选择性返回插件(SelectSelectivePlugin)、乐观锁插件(OptimisticLockerPlugin)、LombokPlugin等拓展。
Stars: ✭ 1,038 (+4052%)
Mutual labels:  mybatis, mybatis-generator
AllInOneFX
All In One JavaFX Application with a curated list of awesome JavaFX libraries, frameworks
Stars: ✭ 26 (+4%)
Mutual labels:  mybatis, mybatis-generator
Mybatis Generator Core
mybatis-generator-core mybatis自动生成代码工具、ibatis自动生成代码工具,自己定制了下。
Stars: ✭ 40 (+60%)
Mutual labels:  mybatis, mybatis-generator
Community
开源论坛、问答系统,现有功能提问、回复、通知、最新、最热、消除零回复功能。功能持续更新中…… 技术栈 Spring、Spring Boot、MyBatis、MySQL/H2、Bootstrap
Stars: ✭ 1,947 (+7688%)
Mutual labels:  mybatis, mybatis-generator
Mybatis Tools
Stars: ✭ 14 (-44%)
Mutual labels:  mybatis, mybatis-generator
Priest
dubbo mybatis springboot base soa rest api framework with customer code generator
Stars: ✭ 160 (+540%)
Mutual labels:  mybatis, mybatis-generator
S Mall Ssm
小小商城系统,JavaWEB项目,基于SSM,仿天猫页面,功能齐全,实现了自动处理关联查询的通用Mapper、抽象 BaseService 类、注解鉴权、参数注解校验等
Stars: ✭ 456 (+1724%)
Mutual labels:  mybatis, mybatis-generator
Generator
A code generator for MyBatis.
Stars: ✭ 4,847 (+19288%)
Mutual labels:  mybatis, mybatis-generator
mall
SpringBoot + Layui 电子商城系统
Stars: ✭ 38 (+52%)
Mutual labels:  mybatis, mybatis-generator
atguigu ssm crud
Atguigu-SSM-CRUD 一个最基本的CRUD系统,采用IDEA+Maven搭建,具备前后端交互功能,前端采用BootStrap+Ajax异步请求DOM渲染,后端采用SpringMVC+MyBatis+Mysql8.0+Servlet+Jsp,符合REST风格URL规范,并加入了Hibernate提供的数据校验功能,支持PageHelper的分页功能,很适合SSM阶段性练习。同时用到了很多前端操作以及BootStrap组件,也有利于学习JS和前端框架。
Stars: ✭ 52 (+108%)
Mutual labels:  mybatis, mybatis-generator

MyBatis Generator

Install & Run

node

First,run from your terminal:

sudo npm install -g git+https://[email protected]/Youmoo/mybatis-generator.git

Second,create a file, config.json,with the following content:

{
  "host": "localhost",
  "database": "dbtest1",
  "user": "test",
  "password": "test",
  "connectionLimit": 10,
  "httpPort": 8888
}

Third,run from your terminal:

mybatis config.json

Last, click me.

java

First , create a file in your home path, config.json,with the following content:

{
  "host": "localhost",
  "database": "dbtest1",
  "user": "test",
  "password": "test",
  "connectionLimit": 10,
  "dbPort": 3306,
  "jdbcDriver": "com.mysql.jdbc.jdbc2.optional.MysqlDataSource"
}

Then run from your terminal:

git clone https://github.com/Youmoo/mybatis-generator
cd mybatis-generator
cp ~/config.json ./
cd java
mvn spring-boot:run -Dserver.port=8888

Lastly , open me

Generate text such as :

  1. resultMap
  2. baseColumns
  3. insert
  4. insertSelective
  5. update
  6. updateSelective
  7. entity
  8. dao
  9. many more...

Libs that are used:

  1. react+flux
  2. nodejs+restify
  3. mysql
  4. browserify
  5. semantic-ui
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].