相关文章
springboot基础--实现默认登录页面
1、搭建项目
依赖中 多加入thymeleaf依赖
<dependencies><!--thymeleaf的依赖--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId></dependency><!--we…
建站知识
2024/11/2 16:04:56
ViT细节与代码解读
最近看到两篇解读ViT很好的文章,备忘记录一下:
先理解细节
1:再读VIT,还有多少细节是你不知道的
再理解代码
1:ViT源码阅读-PyTorch - 知乎
建站知识
2024/11/15 7:51:05
深入学习JVM(Java虚拟机)
目录
一.JDK、JRE、JVM的关系
1.1JDK(Java SE Development Kit)
1.2JRE( Java Runtime Environment)
1.3JVM(Java Virtual Machine)
1.4JDK、JRE、JVM的区别与联系
二.Class的生命周期
2.1加载
2.1.1 类加载器
2.1.2类加载机制
2.1.3双亲委派
2.2链接
2.2.1验证
2…
建站知识
2024/11/25 14:56:38
工作、生活常用免费api接口大全
手机号码归属地:提供三大运营商的手机号码归属地查询。全国快递物流查询:1.提供包括申通、顺丰、圆通、韵达、中通、汇通等600快递公司在内的快递物流单号查询。2.与官网实时同步更新。3.自动识别快递公司。IP归属地-IPv4区县级:根据IP地址查…
建站知识
2024/11/23 6:44:09
LeetCode 1194.锦标赛优胜者
数据准备
Create table If Not Exists Players (player_id int, group_id int);
Create table If Not Exists Matches (match_id int, first_player int, second_player int, first_score int, second_score int);
Truncate table Players;
insert into Players (player_id, g…
建站知识
2024/10/7 2:27:00
How do I redirect Tornado shell ouptput?
In Tornado ,we can’t copy data from the terminal. And, as the data increases, the previous data is overwritten.
So,How do I redirect Tornado shell ouptput?
After trying many methods, I found one that worked.
The main code as follows
file = open(&quo…
建站知识
2024/11/25 22:47:09
04-Scala流程控制
流程控制
Scala程序代码和所有编程语言代码一样,都会有特定的执行流程顺序,默认情况下是顺序执行,上一条逻辑执行完成后才会执行下一条逻辑,执行期间也可以根据某些条件执行不同的分支逻辑代码。
分支控制
让程序有选择的的…
建站知识
2024/11/22 6:13:31
实现电商跨平台订单每日自动对账
场景描述:
多数商家都存在多电商平台同时经营的情况,而进行订单对账则是相关业务或财务人员的每日必修课。比如商家在天猫,苏宁,1号店,京东等均有运营店铺,每天需要通过各电商后台系统抓单打单,…
建站知识
2024/11/25 8:55:44