方法一: #打印SQL mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl 方法二: 此方法需要将代码中的com.lion.mapper换成你自己的mapper路径 #打印SQL logging.lev ...
分类:
数据库 时间:
2021-02-22 11:47:59
阅读次数:
0
[root@server01 ~]# vi 1.txt 1111111111111111111 121212aaasdasdf asdfasdfasdfasdfasdf 12121212aklsdfjaklsdfkjk *****#)#((@#*@)1121212 root@gitlba-aming ...
分类:
其他好文 时间:
2021-02-20 12:08:34
阅读次数:
0
tomcat 启动tomcat cd /usr/tomcat/apache-tomcat-7.0.57/bin/ ./startup.sh 停止tomcat ./shutdown.sh 查看tomcat日志信息 tail -200f /usr/tomcat/apache-tomcat-7.0.57/ ...
分类:
其他好文 时间:
2021-02-20 11:58:57
阅读次数:
0
AES: package com.example.wuji.jiami; import com.sun.org.apache.xml.internal.security.utils.Base64; import javax.crypto.Cipher; import javax.crypto.spe ...
分类:
其他好文 时间:
2021-02-19 13:13:37
阅读次数:
0
前言 1、配置虚拟主机有两种方式,可以在默认的httpd.conf 配置文件中;也可以在conf.d 目录下面做 vhosts.conf 文件的配置处理。这边优先考虑第二种,因为第二种更加方便站点的维护管理 2、在conf.d目录下面做vhosts.conf 文件的添加。 注意:这里的vhosts. ...
分类:
Web程序 时间:
2021-02-19 13:05:05
阅读次数:
0
注意:下面的内容都是放在虚拟主机的单独配置中,而并非是在httpd.conf 的全局配置中。 禁止访问某些文件/目录 增加Files选项来控制,比如要不允许访问 .inc 扩展名的文件,保护php类库: <Files ~ "\.inc$"> Order allow,deny Deny from al ...
分类:
Web程序 时间:
2021-02-19 13:02:29
阅读次数:
0
本文将介绍一系列与Linux系统编程有关的概念。 操作系统的核心——内核 操作系统 System 、内核 kernel 广义指完整的软件包,这包括用来管理计算机资源的核心层软件,以及附带的所有标准软件工具,诸如命令行解释器、图形用户界面、文件操作工具和文本编辑器等。 狭义指管理和分配计算机资源(即C ...
分类:
系统相关 时间:
2021-02-18 13:57:40
阅读次数:
0
通常的使用方法是 使用-c参数 sha256sum -c SHA256SUM-files md5sum -c md5sum-files ##获取字符串的MD5值 以下以md5sum为例 例如 echo -n 'hello'|md5sum|cut -d ' ' -f1 得到的MD5值: 5d41402 ...
分类:
系统相关 时间:
2021-02-18 13:35:26
阅读次数:
0
0x01、环境搭建 下载地址:https://codeload.github.com/apache/shiro/zip/shiro-root-1.2.4 环境:Tomcat 8.5.27 + idea 2020.2 + jdk 1.8 +maven 3.6 下载之后之后直接打开,并open这个web ...
分类:
其他好文 时间:
2021-02-18 13:25:23
阅读次数:
0
一、通过read 接收 1. 通过vim 定义一个test.sh的脚本 vim test.sh 2. 编写shell脚本 #! /bin/bash read name echo "$name It is a test" 3. 添加脚本执行权限 chmod +x test.sh 4. 执行脚本 [ro ...
分类:
其他好文 时间:
2021-02-18 13:13:07
阅读次数:
0