STAR法则是情境(situation)、任务(task)、行动(action)、结果(result)四项的缩写。STAR法则是一种常常被面试官使用的工具,用来收集面试者与工作相关的具体信息和能力。STAR法则比起传统的面试手法来说,可以更精确地预测面试者未来的工作表现 STAR法则,即为Situa ...
分类:
其他好文 时间:
2021-05-24 12:02:20
阅读次数:
0
概况 启动不带参数线程的方法 启动带参数线程的方法 线程更新UI 线程锁同步共享数据 启动不带参数线程的方法 第一种快速启动 1 2 3 4 Thread t = new Thread(()=>{ //下面写一些在线程中处理的方法 }); t.Start(); 第二种启动方法 1 2 3 4 5 6 ...
分类:
编程语言 时间:
2021-05-24 10:51:20
阅读次数:
0
表单 input标签中都要写上name养成习惯 表单form中必须要写的是action和method action:是表单提交的位置,可以是网站或者是一个请求处理地址 method:只有post和get两种提交方式 表单的元素:文本框、单选框、多选框、下拉框(列表框)、文本域、文件域、搜索框、简单验 ...
分类:
Web程序 时间:
2021-05-24 09:46:29
阅读次数:
0
方法一: <input type="text" autocomplete="off" name="test" /> 方法二: 在 input 所在的form标签中添加 <form action="#" autocomplete="off"> <input type="text" autocomple ...
分类:
Web程序 时间:
2021-05-24 08:42:55
阅读次数:
0
Spring Security 入门(基本使用) 这几天看了下b站关于 spring security 的学习视频,不得不说 spring security 有点复杂,脑袋有点懵懵的,在此整理下学习内容。 1、入门 1.1、什么是 spring security spring security 是一 ...
分类:
编程语言 时间:
2021-05-24 08:31:15
阅读次数:
0
1 <html> 2 <head> 3 <meta http-equiv="content-type" content="text/html; charset=utf-8"> 4 <title>Reg</title> 5 <style> 6 .state1{ 7 color:#aaa; 8 } 9 ...
分类:
Web程序 时间:
2021-05-24 06:16:05
阅读次数:
0
文件上传 1.前端加入表单 <form method="POST" , action = "/Upload", enctype="multipart/form-data"> <input type="file", name = "file"/><br> <input type="submit", v ...
分类:
Web程序 时间:
2021-05-24 05:55:31
阅读次数:
0
一、使用Apache ab模拟并发压测 1、压测工具介绍 $ ab -n 100 -c 100 http://www.baidu.com/ -n表示发出100个请求,-c模拟100个并发,相当是100个人同时访问。 还可以这样写: $ ab -t 60 -c 100 http://www.baidu ...
分类:
编程语言 时间:
2021-05-24 05:16:43
阅读次数:
0
创建全文索引 create context index CONTEXT_a_CONTENT on a(CONTENT) lexer CHINESE_FP_LEXER sync transaction; 验证全文索引查询 SELECT * FROM a WHERE CONTAINS(a.CONTENT ...
分类:
其他好文 时间:
2021-05-24 01:54:16
阅读次数:
0
package org.springblade.flow.engine.listener.common; import org.flowable.engine.delegate.DelegateExecution; import org.springframework.stereotype.Comp ...
分类:
其他好文 时间:
2021-05-24 01:47:35
阅读次数:
0