一、Spring Security介绍 1、框架介绍 Spring 是一个非常流行和成功的 Java 应用开发框架。Spring Security 基于 Spring 框架,提供了一套 Web 应用安全性的完整解决方案。一般来说,Web 应用的安全性包括 用户认证(Authentication)和用 ...
分类:
编程语言 时间:
2020-05-22 21:28:54
阅读次数:
71
Flink监控信息写入到PushGateway出现 java.io.IOException: Response code from http xx was 200问题 ...
分类:
编程语言 时间:
2020-05-22 17:03:01
阅读次数:
246
表 Publish class Publish(models.Model): nid = models.AutoField(primary_key=True) name=models.CharField( max_length=32) city=models.CharField( max_lengt ...
分类:
其他好文 时间:
2020-05-22 12:33:11
阅读次数:
55
MySQL uuid()函数生成的UUID的长度问题 错误重新 有一user表,表结构信息如下: 现在尝试执行以下SQL语句,向user表插入一条数据: sql INSERT INTO VALUES ( UUID(),"肖zy",22 ) INSERT INTO VALUES ( UUID(),"肖 ...
分类:
数据库 时间:
2020-05-21 21:23:51
阅读次数:
170
问题描述 练习 3-5 编写函数 itob(n, s, b),将整数n转换为以b为底的数,并将转换结果以字符的形式保存到字符串s中。例如,itob(n, s, 16)把整数n格式化成十六进制整数保存在s中。 Write the function itob(n,s,b) that converts t ...
分类:
编程语言 时间:
2020-05-21 21:20:18
阅读次数:
72
https://www.jianshu.com/p/0b9a40db6061 ...
分类:
系统相关 时间:
2020-05-21 19:23:00
阅读次数:
58
一:基础Json数据格式(多层次)--(用children表示子节点的集合) [{ "id":1, "name":"C", "size":"", "date":"02/19/2010", "children":[{ "id":2, "name":"Program Files", "size":"12 ...
分类:
其他好文 时间:
2020-05-21 14:33:33
阅读次数:
49
package main import "fmt" func main() { /* 定义局部变量 */ var grade string = "B" var marks int = 90 switch marks { case 90: grade = "A" case 80: grade = "B ...
分类:
其他好文 时间:
2020-05-21 13:28:22
阅读次数:
82
请求数据 : 请求参数 cookie信息 请求头信息….. JavaWEB : HttpServletRequest Request.getParameter(参数名); Request.getParameterMap(); Request.getCookies(); Request.getHead ...
分类:
其他好文 时间:
2020-05-21 11:47:29
阅读次数:
52