GithubHelp home page GithubHelp logo

fenglibin / springboot-mybatis Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kingofmonkey/springboot-mybatis

0.0 1.0 0.0 148 KB

创建 SpringBoot 项目集成 Mybatis + PageHelper分页插件 + Druid + WebSocket + Redis + Swagger2 +jwt(持续添加组件和功能中。。。)

Dockerfile 0.57% Java 95.90% HTML 3.53%

springboot-mybatis's Introduction

springboot-mybatis

创建 SpringBoot 项目集成 Mybatis + PageHelper分页插件 + Druid + WebSocket + Redis + Swagger2

多数据源以及分布式事务正在整合中

sql:

SET FOREIGN_KEY_CHECKS=0;


-- Table structure for syslog


DROP TABLE IF EXISTS syslog; CREATE TABLE syslog ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, user_name varchar(20) NOT NULL, type varchar(10) NOT NULL, operation varchar(255) NOT NULL, method varchar(100) NOT NULL, params text NOT NULL, ip varchar(20) NOT NULL, operation_time datetime NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;


-- Table structure for userinfo


DROP TABLE IF EXISTS userinfo; CREATE TABLE userinfo ( id int(10) unsigned NOT NULL AUTO_INCREMENT, user_id varchar(32) NOT NULL, user_name varchar(130) NOT NULL, age int(11) NOT NULL, gender varchar(11) NOT NULL, address varchar(100) NOT NULL, user_pass varchar(132) NOT NULL COMMENT '用户秘银,进行md5加盐处理', PRIMARY KEY (id), KEY uid (user_id) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;

springboot-mybatis's People

Contributors

kingofmonkey avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.