# lesson4 **Repository Path**: yanglei1975/lesson4 ## Basic Information - **Project Name**: lesson4 - **Description**: 这是微服务第4课的代码。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-27 - **Last Updated**: 2026-04-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 该项目使用mybatis-plus对数据库contacts中的表person进行增删改查操作,配置信息保存在Nacos中。 以下代码为Nacos中配置:person-service.yaml中的内容 test: test ok 666 spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://localhost:3306/contacts?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8 username: root password: root mybatis-plus: mapper-locations: classpath*:mapper/*.xml type-aliases-package: cn.edu.sdjzu.entity configuration: map-underscore-to-camel-case: true log-impl: org.apache.ibatis.logging.stdout.StdOutImpl