正则表达式的工具类,目前包括文本长度、手机号、邮箱、特殊字符、html标签、url地址格式、中文、英文、为空、数字,提供了jquery和Dom的使用方式,依赖于jquery 有三种使用方式,分别为标签、jQuery和Dom 标签需要为标签添加verify和onverify属性,verify为正则判断 ...
分类:
编程语言 时间:
2020-03-06 12:59:39
阅读次数:
89
案例代码: #定义模型 class BookInfo(db.Model): #设置表名 __tablename__ = 'bookinfo' #设置为主键之后,自动自增长 id = db.Column(db.Integer,primary_key=True) name = db.Column(db. ...
分类:
其他好文 时间:
2020-03-06 10:36:52
阅读次数:
49
本章介绍SpringBoot与JPA整合 整合流程 1、新建一个SpringBoot Web项目 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns ...
分类:
编程语言 时间:
2020-03-06 01:27:13
阅读次数:
75
Command line instructions Git global setup git config --global user.name "Your Name" git config --global user.email ""you@example.com"" Create a new r ...
分类:
其他好文 时间:
2020-03-05 17:56:13
阅读次数:
63
14.166在ty库中删除pritab表的id=11数据 14.165在ty库中更新pritab表的id=11数据,1032故障出现 解决方法: 根据报错信息知道binlog文件(Relay_Master_Log_File: mysql-binlog.000004)和position号 (Exec_ ...
分类:
数据库 时间:
2020-03-05 10:29:29
阅读次数:
88
数据库集群会产生哪些问题? 1. 自增id问题 2. 数据关联查询问题(水平拆分) 3.数据同步问题 数据库集群下自增id问题的解决? 1. UUID(不推荐, 不能建索引) 2. 设置id步长(缺点:需要在设计数据库时需要确定库的数量,才能定好步长间隔) 3. 雪花算法(sharding-jdbc ...
分类:
数据库 时间:
2020-03-03 14:48:30
阅读次数:
86
具体报错: AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at 535 5.7.8 https://support.google.com/mail/?p=BadCrede ...
分类:
其他好文 时间:
2020-03-03 12:45:06
阅读次数:
88
(1) sent one mail to IC inbox via outlook: (2) go to SWEL to check if there is one entry for the mail you just sent (3) go to tcode SWI1, you will fin ...
分类:
其他好文 时间:
2020-03-03 10:47:28
阅读次数:
64
gitee下载的项目,点击“Add to Index”后就会整个项目显示*号 解决方法:删除“C:\Users\{username}\.git.config”文件,重新配置 git config --global user.name 'Jhone'git config --global user.e ...
分类:
其他好文 时间:
2020-03-02 13:06:05
阅读次数:
104