摘要:
官方网址:https://tomcat.apache.org/ [root@iZuf6j83unak4htk3braolZ opt]# rpm -qa | grep tomcat #验证是否安装 Tomcat 下载 [root@iZuf6j83unak4htk3braolZ opt]# wget h 阅读全文
摘要:
[root@iZuf6j83unak4htk3braolZ opt]# rpm -qa | grep mysql #查看是否已安装MySQL,无输出证明未安装 首先下载 yum 资源包,地址 https://dev.mysql.com/downloads/repo/yum/ [root@iZuf6j 阅读全文
摘要:
1、下载 [root@iZuf6j83unak4htk3braolZ opt]# java -version #查看是否安装过JDK -bash: java: command not found 官网下载:https://www.oracle.com/java/technologies/javase 阅读全文
摘要:
1、下载 官网:http://redis.io/download ,将下载好的文件通过远程终端工具移到 Linux 下 Linux 命令 wget [root@localhost ~]# wget https://download.redis.io/releases/redis-6.2.5.tar. 阅读全文
摘要:
1.查看日志(获得指定版本号;回车查看更多,q退出) git log 2.回退到指定版本 git reset --soft 指定版本ID 3.再次推送到远程 git push origin master --force 阅读全文
摘要:
效果图 一、准备工作 (1)导入jQuery a 下载到本地 地址 https://jquery.com/download/ b 使用网上的(当然没网不能使用) <script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.mi 阅读全文
摘要:
1、首先输入 npm get registry 查看当前镜像源, npm get registry https://registry.npmjs.org/(npm默认镜像源) 2,修改镜像源 npm config set registry xxx(镜像源地址),国内一般使用淘宝镜像源 npm con 阅读全文
摘要:
一、本地数据库连接池使用 1、 配置全局(在本地tomcat配置) a. 打开tomcat/conf/context.xml文件添加如下配置 <!-- JNDI tomcat 数据库连接池配置 --> <Resource name="db" auth="Container" maxActive="1 阅读全文
摘要:
在接收文件里加入如下代码 <% request.setCharacterEncoding("UTF-8"); %> 阅读全文