摘要: 各数组间相互转换:int[] data = {1, 2, 3, 4, 5, 6, 7}; 1.int[] 转换 List<Integer> List<Integer> lists = Arrays.stream(data).boxed().collect(Collectors.toList()); 阅读全文
posted @ 2021-10-09 18:01 antime 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-07 19:11 antime 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 为什么brew用不了,为什么/usr/bin/ruby路径不对, 安装brew 阅读全文
posted @ 2020-03-10 09:38 antime 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/lingfengblogs/p/4195984.html 集合简单查询方法 mongodb语法:db.collection.find() //collection就是集合的名称,这个可以自己进行创建。 对比sql语句:select * from 阅读全文
posted @ 2019-02-20 17:42 antime 阅读(2814) 评论(0) 推荐(0) 编辑
摘要: 转自 -- http://www.360doc.com/userhome/36864145 风控指标是风控管理中最重要的衡量指标,此文指标定义并非适用于所有风控系统。提炼指标的定义是为了在风控体系中统一口径,对业务和风控以及运行管理提供数据及分析与决策服务。 指标名称 基本定义 剩余本金 逾期本金+ 阅读全文
posted @ 2018-12-27 10:59 antime 阅读(874) 评论(0) 推荐(0) 编辑
摘要: 教程 StarUML(简称SU),是一种创建UML类图,生成类图和其他类型的统一建模语言(UML)图表的工具。StarUML是一个开源项目之一发展快、灵活、可扩展性强(zj). StarUML官方下载地址: http://staruml.io/download 安装教程: 安装步骤很简单,省略。 注 阅读全文
posted @ 2018-11-29 14:35 antime 阅读(7405) 评论(0) 推荐(1) 编辑
摘要: 参考页面: 可方便扩展的JIRA Rest Web API的封装调用 JIRA是一个缺陷跟踪管理系统,被广泛应用于缺陷跟踪、客户服务、需求收集、流程审批、任务跟踪、项目跟踪和敏捷管理等工作领域,当我们需要把第三方业务系统集成进来时,可以调用他的API。 JIRA本身的API非常强大,但它是一个底层的 阅读全文
posted @ 2018-08-07 16:39 antime 阅读(842) 评论(0) 推荐(0) 编辑
摘要: 系统参数(1.3.6.1.2.1.1) OID 描述 备注 请求方式 .1.3.6.1.2.1.1.1.0 获取系统基本信息 SysDesc GET .1.3.6.1.2.1.1.3.0 监控时间 sysUptime GET .1.3.6.1.2.1.1.4.0 系统联系人 sysContact G 阅读全文
posted @ 2018-07-17 14:32 antime 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 首先,我们来看一下spring boot是什么,它帮助我们解决了哪些问题: SpringBoot是伴随着Spring4.0诞生的; 从字面理解,Boot是引导的意思,因此SpringBoot帮助开发者快速搭建Spring框架; SpringBoot帮助开发者快速启动一个Web容器; SpringBo 阅读全文
posted @ 2017-12-26 16:49 antime 阅读(6814) 评论(0) 推荐(0) 编辑
摘要: 在开始之前,先介绍下Map是什么? javadoc中对Map的解释如下: An object that maps keys to values . A map cannot contain duplicate keys; each key can map to at most one value.T 阅读全文
posted @ 2017-12-14 15:53 antime 阅读(298) 评论(0) 推荐(0) 编辑