会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
daniel350-wang
上一页
1
···
8
9
10
11
12
13
14
15
16
···
19
下一页
1.23
摘要: 跟着视频敲代码,纯springboot框架的后端项目 今天来做分页查询 分页查询: 每次只展示一页的数据,比如:一页展示10条数据,如果还想看其他的数据,可以通过点击页码进行查询。 要想从数据库中进行分页查询,我们要使用LIMIT关键字,格式为:limit 开始索引 每页显示的条数查询第1页数据的S
阅读全文
posted @ 2024-01-23 21:02 Daniel350
阅读(24)
评论(0)
推荐(0)
编辑
1.22
摘要: 跟着视频springboot框架案例敲代码,完成部门管理的增加功能 @Slf4j @RestController public class DeptController { @Autowired private DeptService deptService; @PostMapping("/dept
阅读全文
posted @ 2024-01-22 21:41 Daniel350
阅读(26)
评论(0)
推荐(0)
编辑
1.19
摘要: 跟着视频案例敲代码,来熟悉springboot框架 今天完成部门管理中的删除功能 @Slf4j @RestController public class DeptController { @Autowired private DeptService deptService; @DeleteMappi
阅读全文
posted @ 2024-01-19 22:06 Daniel350
阅读(39)
评论(0)
推荐(0)
编辑
1.18
摘要: 继续看着视频案例学习springboot 今天完成部门管理的查询功能代码 @Slf4j @RestController public class DeptController { @Autowired private DeptService deptService; //@RequestMappin
阅读全文
posted @ 2024-01-18 20:53 Daniel350
阅读(53)
评论(0)
推荐(0)
编辑
1.17
摘要: 学习springboot框架 笔记: REST(Representational State Transfer),表述性状态转换,它是一种软件架构风格。 传统URL风格如下: http://localhost:8080/user/getById?id=1 GET:查询id为1的用户http://lo
阅读全文
posted @ 2024-01-17 21:05 Daniel350
阅读(19)
评论(0)
推荐(0)
编辑
1.16
摘要: 接着看着视频案例学springboot框架 准备实体类 /*部门类*/ @Data @NoArgsConstructor @AllArgsConstructor public class Dept { private Integer id; private String name; private
阅读全文
posted @ 2024-01-16 21:31 Daniel350
阅读(21)
评论(0)
推荐(0)
编辑
1.15
摘要: 跟着视频学习springBoot框架, 第1步:准备数据库表 -- 部门管理 create table dept( id int unsigned primary key auto_increment comment '主键ID', name varchar(10) not null unique
阅读全文
posted @ 2024-01-15 21:27 Daniel350
阅读(39)
评论(0)
推荐(0)
编辑
11.13
摘要: 今天在java科的课上作业只得了个c还是对增删改查不够熟练,仔细思考可以优化的地方还有很多,比如servlet+jsp结构传参太麻烦,远没有springboot的方便简洁,打算学学sringboot,servlet+jsp还是有些过时了,网上找到的资料也少
阅读全文
posted @ 2023-11-13 21:05 Daniel350
阅读(4)
评论(0)
推荐(0)
编辑
10.24
摘要: 跟着模板敲代码(1) 项目的架构 Dao为数据持久层,用于实现数据库的增删改查 entity为javabean用于封装数据库中的对象 servlet为前端数据的处理层 jsp为前端页面 现在来一个个实现 BaseDao用于链接mysql数据库 public class BaseDao { stati
阅读全文
posted @ 2023-10-31 23:36 Daniel350
阅读(9)
评论(0)
推荐(0)
编辑
10.23
摘要: 学习jdbc的基础概念,快速入门 1.jdbc的概念JDBC(Java DataBase Connectivity:java数据库连接)是一种用于执行SQL语句的Java API,可以为多种关系型数据库提供统一访问,它是由一组用Java语言编写的类和接口组成的。JDBC的作用:可以通过java代码操
阅读全文
posted @ 2023-10-31 22:26 Daniel350
阅读(6)
评论(0)
推荐(0)
编辑
上一页
1
···
8
9
10
11
12
13
14
15
16
···
19
下一页
导航
博客园
首页
联系
订阅
管理
公告