摘要: mybatisplus简化了dao层 package com.example.mp_01.dao; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.example.mp_01.domain.User; import 阅读全文
posted @ 2023-07-20 18:04 会秃头的小白 阅读(8) 评论(0) 推荐(0) 编辑
摘要: spring整合mybatis springBoot整合mybaits 配置文件 spring: datasource: url: jdbc:mysql://localhost:3306/test driver-class-name: com.mysql.jdbc.Driver username: 阅读全文
posted @ 2023-07-20 11:33 会秃头的小白 阅读(7) 评论(0) 推荐(0) 编辑
摘要: spring整合junit复习 springBoot整合junit package com.example.springboot_04; import com.example.springboot_04.service.ServiceBook; import org.junit.jupiter.ap 阅读全文
posted @ 2023-07-20 11:00 会秃头的小白 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 不常用的application.properties版的 常用的:application.yml版 #多环境开发,设置启用环境 spring: profiles: active: test #开发 spring: config: activate: on-profile: dev server: p 阅读全文
posted @ 2023-07-20 09:50 会秃头的小白 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 在yml文件中读取数据,用$符号就可以 类似于这样的 如果要读取yml里面全部的数据,就用自动装配来写 而如果要用实体类来读取里面的数据 package com.example.springboot_01.domain; import org.springframework.boot.context 阅读全文
posted @ 2023-07-20 09:36 会秃头的小白 阅读(57) 评论(0) 推荐(0) 编辑