相关文章
servlet实现登录功能【当用户当前未登陆,跳转登录页面才能访问,若已经登录了,才可以直接访问】
1. 前端
<!DOCTYPE html>
<html lang"en">
<head><meta charset"UTF-8"><title>Title</title>
</head>
<body><form action"login" method"POST"><input type"text&q…
建站知识
2025/1/22 22:54:47
Linux中使用selenium截图的文字变为方框的解决方案
一、前言
最近在Linux中使用selenium截图时,发现文字都变为了方框: 虽然不影响selenium的使用,但有点影响调试,也不好看,后面发现是因为Linux缺少中文字体的缘故,需要安装中文字体就能解决。
二、安装中文…
建站知识
2025/1/9 3:15:06
Retrofit项目 - Android和Java的类型安全的HTTP客户端
A type-safe HTTP client for Android and Java
官网:Retrofit Retrofit turns your HTTP API into a Java interface.
public interface GitHubService { GET("users/{user}/repos") Call<List<Repo>> listRepos(Path("user"…
建站知识
2025/1/8 22:06:12
hive创建hbase表映射
将hbase中的表映射至hive中,便于表的操作
create external table student_info(id string,student_name string,gender string,pwd string,school_name string,location string
)
stored by org.apache.hadoop.hive.hbase.HBaseStorageHandler withserdeproperties…
建站知识
2024/12/14 13:49:46
runc和docker
在Docker中,runc是一个轻量级的运行时工具,用于创建和运行容器。它是Open Container Initiative(OCI)的一部分,负责管理和执行容器中的进程。
runc负责创建和管理Linux命名空间、控制组(cgroups࿰…
建站知识
2024/11/12 9:44:15
【完美解决】GitHub连接超时问题 Recv failure: Connection was reset
问题:
已经开了梯子但是在Idea中使用git(GitHub)还是连接超时Recv failure: Connection was reset。此时需要让git走代理。
解决方案:
1.对右下角网络点击右键 -> 打开网络和Internet设置
2.代理 -> 查看到地址和端口号…
建站知识
2024/11/10 16:26:58