摘要: Mybatis 配置文件 spring: application: name: springboot-mybatis-quickstart #数据库的连接信息 datasource: type: com.alibaba.druid.pool.DruidDataSource url: jdbc:mys 阅读全文
posted @ 2025-11-17 20:39 David大胃 阅读(2) 评论(0) 推荐(0)
摘要: Mybatis public class HikariDataSource extends HikariConfig implements DataSource, Closeable { private static final Logger LOGGER = LoggerFactory.getLo 阅读全文
posted @ 2025-11-16 20:25 David大胃 阅读(2) 评论(0) 推荐(0)
摘要: DQL条件查询 -- DQL: 条件查询 -- 1. 查询 姓名 为 柴进 的员工 select * from emp where name = '柴进'; -- 2. 查询 薪资小于等于5000 的员工信息 select * from emp where salary <=5000; -- 3. 阅读全文
posted @ 2025-11-15 18:25 David大胃 阅读(6) 评论(0) 推荐(0)
摘要: 数据库 创建数据库 create database db01; DDL 默认:default charset utf8mb4; create TABLE user( id int primary key auto_increment comment 'ID,唯一标识',-- 主键约束 usernam 阅读全文
posted @ 2025-11-14 20:41 David大胃 阅读(4) 评论(0) 推荐(0)
摘要: HTTP 状态码大全 https://cloud.tencent.com/developer/chapter/13553 package com.itheima; import jakarta.servlet.http.HttpServletResponse; import org.springfr 阅读全文
posted @ 2025-11-13 20:30 David大胃 阅读(5) 评论(0) 推荐(0)
摘要: Maven 第32集讲安装 Maven文件导入方式 先把对应文件夹拖到资源管理器 然后再让idea识别出这个是maven,记得通过pom.xml打开 依赖配置 Maven Repository: Search/Browse/Explore 排除依赖 命令行传参调用mvn时,要先配置MAVEN_HOM 阅读全文
posted @ 2025-11-12 21:37 David大胃 阅读(8) 评论(0) 推荐(0)
摘要: Vue Vue常用指令 Tlias智能学习辅助系统 <div id="container"> <!-- 顶部导航栏 --> <div class="navbar"> <h1>Tlias智能学习辅助系统</h1> <a href="#">退出登录</a> </div> ​ <form class="s 阅读全文
posted @ 2025-11-11 17:27 David大胃 阅读(3) 评论(0) 推荐(0)
摘要: JavaScript JS-引入方式 JS-基础语法 数据类型 JS-数据类型 JS-函数 JS-函数 //3.JSON - JS对象标记法 let person ={ name: 'itcast', age: 18, gender:'男' } alert(JSON.stringify(person 阅读全文
posted @ 2025-11-11 09:52 David大胃 阅读(4) 评论(0) 推荐(0)
摘要: 表单项 value是表单的提交值 表单项标签 姓名: ​ 密码: ​ 性别:男 ​ 女 ​ ​ ​ 爱好:阅读 ​ 游泳 ​ 编码 ​ 跳舞 ​ 唱歌 ​ ​ 图像: ​ 生日: ​ 时间: ​ 日期时间: ​ 学历: ​ 描述: ​ ​ ​ ​ ​ ​ ​ ​ 表单项 Tlias智能学习辅助系统 阅读全文
posted @ 2025-11-09 09:31 David大胃 阅读(5) 评论(0) 推荐(0)
摘要: 盒子模型 盒子模型 A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A B B B B B B B B B B B B --> Tlias智能学习辅助系统 Tlias智能学习辅助系统 退出登录 阅读全文
posted @ 2025-11-08 00:34 David大胃 阅读(4) 评论(0) 推荐(0)