<%-- Created by IntelliJ IDEA. User: xinfeng Date: 2020/5/22 Time: 10:00 To change this template use File | Settings | File Templates. --%> <%@ page c ...
分类:
Web程序 时间:
2020-07-19 11:52:27
阅读次数:
116
一:简介 1:官网http://jeesite.com/ 2:好处,功能,技术,开发规范http://jeesite.com/docs/ 二:导入运行 1:环境准备 JDK1.8+Eclipse+Maven +MYSQL 具体步骤可参考我以前的:《番外篇:因为一个固态导致的——系统重装与JAVA软件 ...
分类:
其他好文 时间:
2020-07-19 00:39:34
阅读次数:
143
package LeetCode_1507 import java.lang.StringBuilder /** * 1507. Reformat Date * https://leetcode.com/problems/reformat-date/description/ * * Given a ...
分类:
其他好文 时间:
2020-07-19 00:30:33
阅读次数:
69
一 获取时间 vba系统内置了很多获取当前时间的函数,代码如下所示。 其中出现了VBA.Time和VBA.Time$。通过调试可以发现VBA.Time返回的数据类型是Variant/Date,VBA.Time$返回的是Variant/String,内容是一样的。 '获取当前的时间信息 Dim a a ...
分类:
编程语言 时间:
2020-07-19 00:29:21
阅读次数:
99
// $arr=[ // ['title'=>'laravel1'], // ['title'=>'laravel2'] // ]; // // 添加 // DB::table('news')->insert($arr); //添加后获取添加数据的自增主键 // $id=DB::table('new ...
分类:
数据库 时间:
2020-07-18 19:58:54
阅读次数:
77
前期数据准备 通过程序往数据库插入 50w 数据 数据表: CREATE TABLE `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `time_date` datetime NOT NULL, `time_timestamp` timestamp N ...
分类:
数据库 时间:
2020-07-18 16:02:17
阅读次数:
70
增 db.Create(user) db.Save(user) 参数只能用**结构体指针****,因为要根据指针写入该条插入的数据, 所以user可以作为该条数据使用。 新增只能用结构体 save方法在没有主键的时候是新增,有主键的时候是更新,save可以解决空字段问题。 可以使用 db.NewRe ...
分类:
其他好文 时间:
2020-07-18 15:35:21
阅读次数:
76
只有csr没有crt,每次创建新的证书的时候都报错失效日期错误,只有请求证书信息没有生成证书信息
分类:
其他好文 时间:
2020-07-18 11:40:11
阅读次数:
104
这是一段我写的源代码,postman做测试单个进行接口测试,直接输入接口url地址,添加接口需要的参数 send运行即可 我对postman理解其实不是太深,工具使用不是太频繁,但确实好用。我用到的模块collections 新建文件夹 再建接口,用的时候随时拿出来send 接口自动化使用前提(纯属 ...
分类:
其他好文 时间:
2020-07-18 11:24:29
阅读次数:
70
import org.apache.commons.lang3.time.DateUtils; import java.time.LocalDate; import java.util.Calendar; import java.util.Date; public class b2获得任意一个时间的 ...
分类:
编程语言 时间:
2020-07-18 11:23:55
阅读次数:
90