摘要: Mybatis入门 Mybatis简介 官网:https://mybatis.org/mybatis-3/zh/index.html 入门程序 查询user表中数据 mapper接口 package com.itheima.mapper; import com.itheima.pojo.User; 阅读全文
posted @ 2024-07-19 21:59 bfs1201 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 后端Web开发 Maven Apache Maven 是一个项目管理和构建工具,它基于项目对象模型(POM)的概念,通过一小段描述信息来管理项目的构建。 Maven作用 依赖管理 统一的项目结构 项目构建 仓库 安装Maven <mirror> <id>alimaven</id> <name>ali 阅读全文
posted @ 2024-07-19 21:58 bfs1201 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 前端 HTML 标签 表格标签 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> 阅读全文
posted @ 2024-07-09 15:38 bfs1201 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 标签 双标签 <strong></strong> 单标签 <br> <hr> html基本骨架 html:整个网页 head:网页头部,对浏览器 body:网页主体,对用户 title:网页标题 快速生成骨架 !配合Tab或者Enter 生成代码如下: <!DOCTYPE html> <html l 阅读全文
posted @ 2024-02-27 22:08 bfs1201 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 常用DOS指令 helloworld 勾选文件扩展名 创建.txt文件 去掉.class后缀,运行 java的执行原理 组成 跨平台 使用IDEA创建项目 之后直接编写代码 使用Scanner接收输入 数组 静态初始化 形式要注意 数组的访问 代码演示: public class Main { pu 阅读全文
posted @ 2024-02-25 17:00 bfs1201 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Linux 命令基础 命令基础格式 command [-options] [parameter] command:命令本身 -options:[可选,非必填]命令的一些选项,可以通过选项控制命令的行为细节 parameter:[可选,非必填]命令的参数,多数用于命令的指向目标等 示例: ls -l 阅读全文
posted @ 2024-02-16 18:33 bfs1201 阅读(170) 评论(0) 推荐(0) 编辑
摘要: # 一、切片操作 # 第一个位置代表区间左端点,第二个位置代表区间右端点,区间左闭右开,第三个位置代表步长 print(' ') seq = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] print(seq[1:4]) print(seq[:5]) print(seq[5:]) pr 阅读全文
posted @ 2023-06-02 20:28 bfs1201 阅读(11) 评论(0) 推荐(0) 编辑