Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 471 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 471 Bytes

mysql

CREATE DATABASE IF NOT EXISTS demo_01 DEFAULT CHARSET utf8 COLLATE utf8_general_ci;
create user 'user_dev'@'localhost' identified by 'pass_dev';
grant all privileges on demo_01.* to 'user_dev'@'localhost';

sqlite config

    datasource:
        url: jdbc:sqlite:path\to\demo_01.db
        username:
        password:
        driver-class-name: org.sqlite.JDBC

反向生成mybatis mapper

mvn mybatis-generator:generate -X