会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
D目录
博客园
首页
新随笔
联系
订阅
管理
2020年6月5日
ssm的基础配置文件介绍
摘要: <?xml version="1.0" encoding="UTF-8"?> <!--beans中不仅要有给出源数据的位置、相关参数的值,还要给出spring-context等项目的位置--> <beans xmlns="http://www.springframework.org/schema/b
阅读全文
posted @ 2020-06-05 00:12 D目录
阅读(201)
评论(0)
推荐(0)
2020年6月4日
java,多线程时用的join()函数
摘要: public final synchronized void join(long millis) throws InterruptedException { long base = System.currentTimeMillis(); long now = 0; if (millis < 0) {
阅读全文
posted @ 2020-06-04 19:54 D目录
阅读(702)
评论(1)
推荐(0)
elasticsearch中保存时间格式
摘要: 利用logstash从文档中导入数据到es中,若未事先设定数据格式,有可能存储时间并未保存为date格式而是text格式。 时间若保存为text,则在会以字符串数组格式存储在es中,是乱序,不好查询。 若保存为date格式,则会以统一的字符串进行存储 实际操作中,最常用的时间格式"yyyy-MM-d
阅读全文
posted @ 2020-06-04 10:45 D目录
阅读(4644)
评论(0)
推荐(0)
ssm中的依赖配置
摘要: <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> </dependency> <depend
阅读全文
posted @ 2020-06-04 07:23 D目录
阅读(370)
评论(0)
推荐(0)
2020年5月28日
maven工程打胖瘦jar包插件
摘要: <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.8</source> <target>1.8</target> <
阅读全文
posted @ 2020-05-28 21:50 D目录
阅读(922)
评论(1)
推荐(0)
2020年5月14日
linux安装
摘要: linux有多种安装方式,这里是通过虚拟机安装 1.准备工作 在正式安装之前,需要先安装虚拟机,用的人比较多的有VirtualBox,VMware和Virtual。这里用的是VirtualBox,免费开源,可以到其官网下载https://www.virtualbox.org/ 然后需要下载linux
阅读全文
posted @ 2020-05-14 18:31 D目录
阅读(281)
评论(0)
推荐(0)
公告