linux linux 检测远程端口是否打开

检测远程端口是否打开   常用telnet 110.101.101.101 80方式测试远程主机端口是否打开。   除此之外还可以使用:   方法1.nmap ip -p port 测试端口   nmap ip 显示全...

2022-12-10 296 阅读

Centos安装openjdk

转载自:https://blog.csdn.net/youzhouliu/article/details/51183115 openjdk在linux各个平台下安装源中可以找到。 命令查找安装源中有什么版本: yum search java | grep -i --color JDK ...

2022-12-10 241 阅读

mysql centos7 | All matches were filtered out by modular filtering for argument: mysql-community-server

问题场景:在尝试使用docker安装自定义centos环境时,使用dockfile文件创建镜像容器,在centos7镜像中使用yum安装mysql5.7。 在安装过程中报错:All matches were filtered out by modular f...

2022-12-10 252 阅读

mysql Centos8安装MySQL

一、安装mysql // 更新软件 1. yum update // 下载mysql,保证网络连通 2. wget https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm // 下载mysql,保证网络连通 3. ...

2022-12-10 258 阅读

spring SpringBoot前端模板---thymeleaf

Springboot支持thymeleaf、freemarker、JSP,但是官方不建议使用JSP,因为有些功能会受限制,这里介绍thymeleaf和freemarker。     一、thymeleaf模板 thymeleaf模板的前端界面为....

2022-12-10 308 阅读

spring 在SpringBoot中使用SpringSecurity

本教程是基于SpringMVC而创建的,不适用于WebFlux。(如果你不知道这两者,可以忽略这句提示) 提出一个需求 所有的技术是为了解决实际问题而出现的,所以我们并不空谈,也不去讲那么多的...

2022-12-10 305 阅读

spring Spring Security 设置登录的用户名和密码的三种方式

第一种方式:通过配置文件 spring: security: user: name: root password: root 第二种方式:通过配置类 @Configuration public class SecurityConfig extends WebSecur...

2022-12-10 353 阅读

java 重点---自测可以---java jsch 密钥登陆 Utils

package org.example.utils;import com.jcraft.jsch.*;import org.apache.tomcat.util.http.fileupload.IOUtils;import org.springframework.core.io.ClassPathResource;import org.springfr...

2022-12-10 648 阅读

java Java中将InputStream读取为String, 各种方法的性能对比

如下, 一共存在11种实现方式及其对应的性能测试结果: 1. 使用IOUtils.toString (Apache Utils) String result = IOUtils.toString(inputStream, StandardCharsets.UTF_8); 2. 使用CharStream...

2022-12-10 365 阅读

集合的简化操作Maven包:com.google.guava

<dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>30.0-jre</version></dependency>&nb...

2022-12-10 335 阅读