会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
jsqup
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
···
34
下一页
2023年3月22日
树(简单)
摘要: 树的前序遍历(递归/遍历) 树的中序遍历(递归/遍历) 树的后序遍历(递归/遍历) 树的深度优先搜索(递归/遍历) 树的广度优先搜索(递归/遍历)
阅读全文
posted @ 2023-03-22 17:51 jsqup
阅读(25)
评论(0)
推荐(0)
2023年2月2日
hive中对时间处理的函数总结
摘要: 日期转为时间戳 unix_timestamp('2022-11-12 00:00:00.000') 结果:1668182400 from_unixtime(unix_timestamp('2022-11-12 00:00:00.000'), 'yyyy-MM-dd') 结果:2022-11-12 将
阅读全文
posted @ 2023-02-02 18:34 jsqup
阅读(46)
评论(0)
推荐(0)
2023年1月28日
创建一个spring项目
摘要:   
评论(0)
推荐(0)
2023年1月17日
mybatis面试资料
摘要: 1.#{}和${}的区别 #{} 数据类型检查: 若检测到字符串类型,就加上引号; 若检测到数值类型,就不加引号。 安全检查: 若变量的值带有引号,会对引号进行转义处理,这样可以防止sql注入。 ${} 将传入的数据直接进行sql拼接,不会加引号 可以用来表示表名select ${columns}
阅读全文
posted @ 2023-01-17 15:10 jsqup
阅读(35)
评论(0)
推荐(0)
2023年1月14日
复习第7点-7.SpringMVC 的响应方式
摘要: 1.使用ServletAPI实现转发 /* 使用HttpServletRequest对象实现请求转发 */ @RequestMapping("/httpServletRequest") public void method1(HttpServletRequest request, HttpServl
阅读全文
posted @ 2023-01-14 16:54 jsqup
阅读(34)
评论(0)
推荐(0)
复习第6点-6.SpringMVC作用域传值
摘要: 作用域范围 |对象名称|作用范围| | | | |application|整个作用范围| |session|在当前会话中有效| |request|在当前请求中有效| |page|在当前页面有效| request/session/application作用域传值 package controller;
阅读全文
posted @ 2023-01-14 16:00 jsqup
阅读(37)
评论(0)
推荐(0)
2023年1月13日
复习第5点-5.指定处理请求类型
摘要: |类型|处理的类型| | | | |RequestMapping|GET/POST| |GetMapping|GET| |PostMapping|POST|
阅读全文
posted @ 2023-01-13 15:54 jsqup
阅读(25)
评论(0)
推荐(0)
复习第4点-4.注入不同的对象(集合对象/)
摘要: 注入集合对象 <%-- Created by IntelliJ IDEA. User: 19413 Date: 2023/1/13 Time: 15:09 To change this template use File | Settings | File Templates. --%> <%@ p
阅读全文
posted @ 2023-01-13 15:29 jsqup
阅读(33)
评论(0)
推荐(0)
复习第3点-3.获取请求数据
摘要: package controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.spring
阅读全文
posted @ 2023-01-13 15:08 jsqup
阅读(44)
评论(0)
推荐(0)
复习第二点-2.基于注解的helloworld
摘要: web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instanc
阅读全文
posted @ 2023-01-13 14:42 jsqup
阅读(44)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
···
34
下一页
公告