select id, @group_row:=CASE when @parent_code=a.staff_id then @group_row+1 else 1 end as groupRow, @parent_code:=a.staff_id as parent_code from ss_sta ...
分类:
数据库 时间:
2021-03-17 14:22:05
阅读次数:
0
1.正常情况下,代码这样子写就行了 // 调用添加模型代码 myObjects.push(mesh) // 调用删除模型代码 clearScene(myObjects) /** * 清除模型,模型中有 group 和 scene,需要进行判断 * @param scene * @returns */ ...
分类:
Web程序 时间:
2021-03-17 14:17:33
阅读次数:
0
前言 在java的世界里,有很多优秀的权限认证框架,如Apache Shiro、Spring Security 等等。这些框架背景强大,历史悠久,其生态也比较齐全。 但同时这些框架也并非十分完美,在前后台分离已成标配的互联网时代,这些老牌框架的很多设计理念已经相当滞后,无法与我们的项目完美契合。 而 ...
分类:
其他好文 时间:
2021-03-17 14:14:53
阅读次数:
0
1.引入fastjson <!--fastjson--> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.74</version> </dependency> <!- ...
分类:
编程语言 时间:
2021-03-16 14:10:57
阅读次数:
0
https://www.imperva.com/learn/application-security/osi-model/ What Is the OSI Model The Open Systems Interconnection (OSI) model describes seven layer ...
分类:
其他好文 时间:
2021-03-16 14:01:01
阅读次数:
0
SQL按年月日进行分组 select count(project_name), create_at from table_a group by date_format(create_at, '%Y%m%d'); ...
分类:
数据库 时间:
2021-03-16 13:54:07
阅读次数:
0
GDB的那些奇淫技巧 evilpan 收录于 Security 2020-09-13 约 5433 字 预计阅读 11 分钟 709 次阅读 gdb也用了好几年了,虽然称不上骨灰级玩家,但也有一些自己的经验,因此分享出来给大家,顺便也作为一个存档记录。 多进程调试 最近在调试一个漏洞的exploit ...
分类:
数据库 时间:
2021-03-16 13:46:35
阅读次数:
0
less2 and 1=1有回显,and 1=2无回显,为数值型注入 order by 4–+报错,有3行 查询数据库名 ?id=0' union select 1,(select group_concat(schema_name) from information_schema.schemata) ...
分类:
数据库 时间:
2021-03-16 13:40:45
阅读次数:
0
mysql语句的书写顺序和执行顺序有很大差异。 书写顺序,mysql的一般书写顺写为: select <要返回的数据列> from <表名> join on where group by <分组条件> having <分组后的筛选条件> order by <排序条件> limit <行数限制> 然而 ...
分类:
数据库 时间:
2021-03-15 11:19:23
阅读次数:
0
先上一个标准用法 接口 public interface Dog { void run(); int eatCount(); boolean eta(String name); } 实现 public class GunDog implements Dog { @Override public vo ...
分类:
其他好文 时间:
2021-03-15 11:09:49
阅读次数:
0