实际开发中,都是复制粘贴。
    image.png

    1. server:
    2. port: 8001 #微服务端口号
    3. spring:
    4. application:
    5. name: cloud-payment-service #微服务名称
    6. datasource:
    7. type: com.alibaba.druid.pool.DruidDataSource # 当前数据源操作类型
    8. driver-class-name: org.gjt.mm.mysql.Driver # mysql驱动包
    9. url: jdbc:mysql://localhost:3306/db2021?useUnicode=true&characterEncoding=utf-8&useSSL=false #数据库连接url
    10. username: root #账号
    11. password: 941941 #密码
    12. mybatis: #与mybatis整合。
    13. mapperLocations: classpath:mapper/*.xml
    14. type-aliases-package: com.lun.springcloud.entities # 所有Entity别名类所在包