上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 68 下一页
摘要: ###################################################################### # Build Tools .gradle /build/ !gradle/wrapper/gradle-wrapper.jar target/ !.mvn/ 阅读全文
posted @ 2021-03-24 20:20 yvioo 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 使用post请求 POST http://localhost:9200/索引/标签/_delete_by_query?pretty { "query": { "match_all": { } } } 这里的地址、索引和标签换成自己的 其他的不变 阅读全文
posted @ 2021-03-21 14:15 yvioo 阅读(575) 评论(0) 推荐(0) 编辑
摘要: /** * 递归删除文件夹下所有内容 最后删除该文件夹 * @param filePath 要删除的文件夹路径 * @return */ public boolean deleteFiles(String filePath) { File file = new File(filePath); ret 阅读全文
posted @ 2021-03-21 00:27 yvioo 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 引入maven <dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <version>5.5.13</version> </dependency> <dependency> <groupId>o 阅读全文
posted @ 2021-03-18 22:42 yvioo 阅读(555) 评论(0) 推荐(0) 编辑
摘要: 首先查看数据库时区 show variables like "%time_zone%"; # 设置全局时区 mysql> set global time_zone = '+8:00'; # 设置时区为东八区 mysql> set time_zone = '+8:00'; # 刷新权限使设置立即生效 阅读全文
posted @ 2021-03-17 21:55 yvioo 阅读(1226) 评论(0) 推荐(0) 编辑
摘要: @value不能直接注入值给静态属性,spring 不允许/不支持把值注入到静态变量中;spring支持set方法注入,我们可以利用非静态setter 方法注入静态变量 @Component public class SendMessageUtil { public static String ac 阅读全文
posted @ 2021-03-17 11:39 yvioo 阅读(2387) 评论(0) 推荐(0) 编辑
摘要: function getDate(time){ var date =(new Date(parseInt(time))).toLocaleDateString() return date; } time就是要转换的时间戳 阅读全文
posted @ 2021-03-16 10:33 yvioo 阅读(641) 评论(0) 推荐(0) 编辑
摘要: Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'elasticsearchTemplate' defined in class pa 阅读全文
posted @ 2021-03-15 23:10 yvioo 阅读(2494) 评论(0) 推荐(0) 编辑
摘要: import org.springframework.context.annotation.Configuration; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframe 阅读全文
posted @ 2021-03-15 22:58 yvioo 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 有时候我们想在IDEA里面创建的时候就默认设置一个指定的作者信息 填入作者信息 然后点击ok /** * * @author yvioo */ 然后我们新建文件的时候就会自动带上这个了,模板可以根据自己需要的进行修改 这种只能是新建的文件可以,如果是旧文件,之前没有的话,后面还是会没有 阅读全文
posted @ 2021-03-15 16:12 yvioo 阅读(4538) 评论(0) 推荐(0) 编辑
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 68 下一页