1.3 HTML5新增的input类型 属性值说明 type="email" 限制用户输入必须为Email类型 <br/> type="url" 限制用户输入必须为URL类型 type="date" 限制用户输入必须为日期类型 type="time" 限制用户输入必须为时间类型 type="mont ...
分类:
Web程序 时间:
2021-02-22 12:08:30
阅读次数:
0
目录 | 上一节 (1.7 函数) | 下一节 (2.2 容器) 2.1 数据类型和数据结构 本节以元组和字典为代表介绍数据结构。 原始数据类型 Python 有一些原始数据类型: 整数 浮点数 字符串(文本) 空类型 email_address = None None 常用作可选值或缺失值的占位符 ...
分类:
编程语言 时间:
2021-02-22 12:07:46
阅读次数:
0
方法一: #打印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
命令行指令 Git 全局设置 git config --global user.name "Administrator" git config --global user.email "admin@example.com" 创建新版本库 git clone http://f86ec4dd880f/r ...
分类:
其他好文 时间:
2021-02-20 12:12:27
阅读次数:
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
1、引言 最近一段时间在对卷积神经网络进行量化的过程中,阅读了部分论文,其中对于谷歌在CVPR2018上发表的论文“Quantization and Training of Neural Networks for Efficient Integer-Arithmetic-Only Inference ...
分类:
其他好文 时间:
2021-02-18 13:53:35
阅读次数:
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