数据库存在表BookInfo
- 配置如下信息即可
application.yml
# Druid 连接池
spring:
datasource:
druid:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/bookshop
username: root
password: root
# Mybatis Plus
mybatis-plus:
global-config:
db-config:
table-underline: false # 设置表明不使用下划线方式
configuration:
map-underscore-to-camel-case: false # 设置字段不使用下划线方式
- 访问测试