代码生成
代码生成器:https://gitee.com/renrenio/renren-security.git
-
配置路径及文件名
-
配置数据源
-
启动
-
生成main文件
生成的文件一需要mybatis-plus,等依赖和generator的工具类,一般会单独写一个common,引入依赖和工具类,最后微服务直接引入common依赖。 -
添加@MapperScan
-
配置application.yml 文件
server:
port: 8001
spring:
datasource:
#MySQL配置
driverClassName: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://43.143.132.3:3306/gu_sms?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai
username: root
password: 123456
mybatis-plus:
mapper-locations: classpath*:/mapper/**/*.xml
global-config:
db-config:
id-type: auto # 主键自增
最后不知道为什么,ServiceImp生成的代码报错,根据代码能跑就行的原则,我注释掉了内容,并返回null(之后还要根据业务对代码进行修改)