使用shiro之前肯定要导入相关的依赖 <!-- shiro--> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring</artifactId> <version>1.5.3</version> </de ...
分类:
其他好文 时间:
2020-07-14 13:13:23
阅读次数:
249
本文节选自霍格沃兹《测试开发实战进阶》课程教学内容。 JSON Schema 简介与安装 JSON Schema 是描述 JSON 数据结构的一种格式,JSON Schema 模式是一个词汇表。通过 JSON Schema 可以注释 JSON 的字段以及字段数据类型等信息。 在实际工作中,对接口返回 ...
分类:
其他好文 时间:
2020-07-13 15:35:25
阅读次数:
66
sql server检测库里所有表的索引碎片 SELECT schema_name(T.schema_id) AS Schema_Name,T.Name AS Table_Name,I.name AS Index_Name, I.type AS Index_Type,D.avg_fragmentat ...
分类:
数据库 时间:
2020-07-13 09:50:16
阅读次数:
75
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:mvc="http://www.springframework.org/schema/mvc" ...
分类:
编程语言 时间:
2020-07-12 20:48:22
阅读次数:
77
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance ...
分类:
其他好文 时间:
2020-07-12 14:11:37
阅读次数:
80
最新web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-insta ...
分类:
Web程序 时间:
2020-07-11 13:10:09
阅读次数:
96
查看是否有锁现象 ## 1. 看有没有锁等待 SHOW STATUS LIKE 'innodb_row_lock%'; ## 2. 查看哪个事务在等待(被阻塞了) USE information_schema SELECT * FROM information_schema.INNODB_TRX W ...
分类:
数据库 时间:
2020-07-10 20:42:20
阅读次数:
87
select TABLE_SCHEMA , TABLE_NAME from information_schema.TABLES where table_type='view' and TABLE_SCHEMA ='yw_plm'; 【说明】 yw_plm是你的数据库名称; view说明是要查看所有的 ...
分类:
数据库 时间:
2020-07-10 00:45:29
阅读次数:
166
Spring配置文件加载spring.xml<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="htt
分类:
编程语言 时间:
2020-07-09 17:51:39
阅读次数:
74
在这种情况下,切面由常规类以及基于 XML 的配置实现。 ...
分类:
其他好文 时间:
2020-07-09 15:07:23
阅读次数:
59