摘要: (1)SpringBoot整合Spring(不存在) (2)SpringBoot整合SpringMVC(不存在) (3)SpringBoot整合MyBatis(主要) 一、新建springboot项目。 在application.yml配置文件中添加数据源信息 二、创建domain.book表对象 阅读全文
posted @ 2023-02-16 22:12 佛系粥米 阅读(149) 评论(0) 推荐(0) 编辑
摘要: package com.itheima1; import com.itheima.Springboot07TestApplication; import com.itheima.service.BookService; import org.junit.jupiter.api.Test; impor 阅读全文
posted @ 2023-02-16 21:08 佛系粥米 阅读(15) 评论(0) 推荐(0) 编辑
摘要: springboot中4级配置文件 1级:file:config/application.yml (最高) 2级:file:application.yml 3级:classpath:config/application.yml 4级:classpath:application.yml (最低) 作用 阅读全文
posted @ 2023-02-16 20:44 佛系粥米 阅读(48) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sch 阅读全文
posted @ 2023-02-16 20:10 佛系粥米 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 一、多环境命令启动 maven插件中首先clean,再package打包,(修改字符集为UTF-8) 使用cmd命令java -jar s(Tab键自动补全) -spring.profiles.active=test启动项目 修改端口号: java -jar springboot.jar --ser 阅读全文
posted @ 2023-02-16 19:20 佛系粥米 阅读(125) 评论(0) 推荐(0) 编辑