@NotEmpty 用在集合类上面加了@NotEmpty的String类、Collection、Map、数组,是不能为null或者长度为0的(String Collection Map的isEmpty()方法)@NotBlank只用于String,不能为null且trim()之后size>0@Not ...
分类:
其他好文 时间:
2021-06-04 19:22:27
阅读次数:
0
修改build.gradle文件 // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { goog ...
分类:
移动开发 时间:
2021-06-04 19:09:13
阅读次数:
0
一、增 单:传入实例即可 user := &User{Name: "XX"} db.Create(user) 列表: users := []User{{Name: "xx"},{Name: "XX1"},{Name: "XX2"}} db.Create(&users) 字典 db.Model(&Us ...
分类:
其他好文 时间:
2021-06-04 19:08:13
阅读次数:
0
一、Blazor Server 编译与发布 cd /home/soursecode/ServerDemo donet publish -c release mv bin/release/net5.0/publish /var/www/ServerDemo supervisor守护serverDemo ...
分类:
Web程序 时间:
2021-06-04 19:04:52
阅读次数:
0
首先来说前端上传表格,然后利用纯前端技术进行解析表格的办法 详细步骤 请点击这里 接下来来说上传发送给后端的代码实现 html <input ref="myInput" type="file" class="my_input" :multiple="myMultiple" style="displa ...
分类:
Web程序 时间:
2021-06-04 19:04:10
阅读次数:
0
1.上传jar到服务器的指定目录 2.在该目录下创建Dockerfile 文件 vi Dockerfile 3.编写Dockerfile FROM java:8-jdk MAINTAINER yy ADD map-1.0-SNAPSHOT.jar map.jar EXPOSE 8080 ENTRYP ...
分类:
编程语言 时间:
2021-06-04 19:02:42
阅读次数:
0
0: lambda x:x*3 lambad x,y=3:x*y 1:def findodd(x): if x%2 == 0 return None else: return x 2:几乎不用 3:a=list[filter((lambda x:not(x%3)),range(1,100))] 4: ...
分类:
其他好文 时间:
2021-06-04 18:55:40
阅读次数:
0
import os with open('a.txt','wb') as fp; file = open('a.txt','w',encoding = 'utf-8') # w是覆盖并且重新写入 file.write('Python') # 文件的杜西呃怎么打印出来是个中文字符 # print(fi ...
分类:
其他好文 时间:
2021-06-04 18:48:35
阅读次数:
0
1、sudo xbstream -x -C /data/data_10 < ~/test.xb 2、sudo xtrabackup --decompress --target-dir=/data/data_10 3、sudo xtrabackup --prepare --target-dir=/da ...
分类:
数据库 时间:
2021-06-04 18:45:14
阅读次数:
0
序列化和反序列化 序列化 对象序列化,就是将对象保存到磁盘中,或者在网络中传输对象。这种机制就是使用一个字节序列表示一个对象,该字节序列包含:对象的类型、对象的数据和对象中存储的属性等信息。字节序列写到文件之后,相当于文件中保存了一个对象的信息。 反序列化 将该字节序列从文件中读取回来,重构对象 J ...
分类:
编程语言 时间:
2021-06-03 18:28:27
阅读次数:
0