简介 漏洞环境:不另作说明均为vulhub 菜鸟链接:https://www.runoob.com/w3cnote/fastjson-intro.html GitHub:https://github.com/alibaba/fastjson fastjson是阿里巴巴的开源JSON解析库,它可以解析 ...
分类:
Web程序 时间:
2021-07-12 17:41:27
阅读次数:
0
python+uvicorn+fastapi 背景 使用python的同学,有没有因为不知道用什么接口来测试自己的代码而郁闷?这里我们使用python+uvicorn+fastapi来写一些接口DEMO,DEMO中的接口可能包含form-data、x-www-form-urlencoded、json ...
分类:
编程语言 时间:
2021-07-08 17:45:19
阅读次数:
0
准备工作 public class MainClass { public static void main(String[] args) throws Exception { String resources = "mybatis-config.xml"; InputStream inputStre ...
分类:
其他好文 时间:
2021-07-07 17:50:47
阅读次数:
0
普通属性直接赋值,高级属性可以根据你的业务需要进行赋值, /* 定义高级属性 */ const user = { _age: 0 } //这种方式定义的age无法存储数,只是对某个变量成员的代理,加入get和set的目是让你的属性具有 //了行为,也就是我们可以再访问或者是设置属性的时候,添加更多的 ...
分类:
其他好文 时间:
2021-07-05 19:07:14
阅读次数:
0
const list = [ { type: 'shop', momey: 223 }, { type: 'study', momey: 341 }, { type: 'shop', momey: 821 }, { type: 'transfer', momey: 821 }, { type: 's ...
分类:
编程语言 时间:
2021-07-05 19:06:57
阅读次数:
0
1、 导出单个成员 //导出单个成员,只能导一次,否则报错 export default { foo 'bar' } 2、导出多个成员 //导出多个成员 export const a = 123 export const b = 456 3、加载 //默认加载的是export default 成员 ...
分类:
其他好文 时间:
2021-07-05 19:02:20
阅读次数:
0
获取类路径下文件的绝对路径 在IDEA软件中,src是类的根路径。 package com.happy.reflection; public class AboutPath { public static void main(String[] args) { String path = Thread ...
分类:
其他好文 时间:
2021-07-05 18:39:57
阅读次数:
0
Code Java中使用TCP进行数据传输时需要用到两个类: Socket ServerSocket 其中,客户端使用Socket来创建Socket对象,服务端使用ServerSocket来创建Socket对象。 功能 项目实现的功能,将idea_demo/src/net/net01/NetDemo ...
分类:
编程语言 时间:
2021-07-05 18:36:35
阅读次数:
0
0、说明 QJsonParseError用于JSON解析时报告error。 1、模块和加载项 Header #include<QJsonParseError> qmake QT += core Since Qt 5.0 2、静态字段 类型 字段 取值 说明 enum ParseError Const ...
分类:
Web程序 时间:
2021-07-05 18:25:07
阅读次数:
0
模拟多个线程同时买票 package com.JUC; //基本买票 /* 线程就是一个单独的资源类,没有任何附属操作 * */ public class SynchronizedDemo1 { public static void main(String[] args) { Ticket tick ...
分类:
其他好文 时间:
2021-07-05 18:23:51
阅读次数:
0