Spring Security 学习之旅开端 SpringSecurity 开始 1. 引入依赖 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifact ...
分类:
编程语言 时间:
2021-01-02 11:41:32
阅读次数:
0
图片下载 //练习Thread,实现多线程同步下载图片 public class ThreadTest2 extends Thread{ private String url; private String name; public ThreadTest2(String url,String nam ...
分类:
其他好文 时间:
2021-01-02 10:53:02
阅读次数:
0
#1.JUC JUC:java.util.concurrent 在并发编程中使用的工具类 java.util.concurrent 并发包 java.util.concurrent.atomic 并发原子包 java.util.concurrent.locks 并发lock包 #2.多线程编程 模板 ...
分类:
编程语言 时间:
2021-01-02 10:50:33
阅读次数:
0
int* majorityElement(int* nums, int numsSize, int* returnSize){ int* res =(int*)calloc(2,sizeof(int)); *returnSize=0; if (nums == NULL || numsSize == ...
分类:
其他好文 时间:
2021-01-01 12:50:50
阅读次数:
0
yyyy-mm-dd formatDate: function (date) { function addDateZero(num) { return (num < 10 ? "0" + num : num); } var d = new Date(date); var formatdatetime ...
分类:
Web程序 时间:
2021-01-01 12:46:23
阅读次数:
0
1.把数组里的时间参数转化成值 temp.sorttime = new Date(tempList[i].createTime).getTime(); 2.对数组里的值进行排序 list.sort(this.compare("sorttime")); compare方法 compare(proper ...
分类:
编程语言 时间:
2021-01-01 11:59:12
阅读次数:
0
1 import java.util.*; 2 public class Demo13{ 3 4 5 /*Java规定: 6 1.必须捕获的异常,包括Exception及其子类,但不包括RuntimeException及其子类,这种类型的异常称为Checked Exception。 7 8 2.不需 ...
分类:
编程语言 时间:
2021-01-01 11:53:29
阅读次数:
0
课程demos DELETE blog # 设置blog的 Mapping PUT /blog { "mappings": { "properties": { "content": { "type": "text" }, "time": { "type": "date" }, "user": { " ...
分类:
其他好文 时间:
2021-01-01 11:51:56
阅读次数:
0
一、题目打开介绍 这是题目本身打开的样子,继续进入题目 二、做题 简单的登陆界面和注册界面,没有sql注入已经尝试 申请发布广告 习惯性的测试 然后开始尝试注入,抓包, 两个都要,经过union注入判断列数,发现是22列 然后收集信息 database() web1 version() 10.2.2 ...
分类:
其他好文 时间:
2021-01-01 11:42:49
阅读次数:
0
java代码: 1 import java.math.BigInteger; 2 import java.util.Scanner; 3 4 public class Main 5 { 6 public static void solve(int n) 7 { 8 BigInteger N, p1, ...
分类:
其他好文 时间:
2020-12-31 11:41:33
阅读次数:
0