上一页 1 ··· 63 64 65 66 67 68 69 70 71 ··· 113 下一页
摘要: 差别就是rangeClosed包含最后的结束节点,range不包含。 @Test public void test(){ IntStream.range(0,10).forEach( i -> System.out.println(i)); } @Test public void test1(){ 阅读全文
posted @ 2020-03-31 23:19 天宇轩-王 阅读(3332) 评论(0) 推荐(2) 编辑
摘要: 旧版日期时间 API 存在的问题1. 设计很差: 在java.util和java.sql的包中都有日期类,java.util.Date同时包含日期和时间,而java.sql.Date仅包含日期。此外用于格式化和解析的类在java.text包中定义。2. 非线程安全:java.util.Date 是非 阅读全文
posted @ 2020-03-31 23:04 天宇轩-王 阅读(365) 评论(0) 推荐(2) 编辑
摘要: 对比一下串行流和并行流的效率: /** * @author WGR * @create 2020/3/31 */ public class Demo07Parallel { private static final int times = 500000000; long start; @Before 阅读全文
posted @ 2020-03-31 18:16 天宇轩-王 阅读(372) 评论(0) 推荐(2) 编辑
摘要: 动态转发: 建立SSH隧道 然后启动 打开火狐,进行设置 最后用私网也能进行服务的访问 这种情况下就要知道具体的服务端口了 阅读全文
posted @ 2020-03-30 23:29 天宇轩-王 阅读(1831) 评论(0) 推荐(2) 编辑
摘要: 远程转发: 建立SSH隧道 然后看我这台阿里云能不能ssh到虚拟机服务器 [root@iZbp145axkc98giot5b448Z ~]# ssh root@127.0.0.1 -p 8888 The authenticity of host '[127.0.0.1]:8888 ([127.0.0 阅读全文
posted @ 2020-03-30 23:08 天宇轩-王 阅读(3382) 评论(0) 推荐(3) 编辑
摘要: 本地转发: 在150阿里云上开启httpd [root@iZbp145axkc98giot5b448Z ~]# yum install httpd Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile bas 阅读全文
posted @ 2020-03-30 22:11 天宇轩-王 阅读(3633) 评论(1) 推荐(3) 编辑
摘要: undertow 概述 : Undertow 是红帽公司开发的一款基于 NIO 的高性能 Web 嵌入式服务器 特点 : 轻量级:它是一个 Web 服务器,但不像传统的 Web 服务器有容器概念,它由两个核心 Jar 包组成,加载一个 Web 应用可以小于 10MB 内存 Servlet3.1 支持 阅读全文
posted @ 2020-03-29 21:50 天宇轩-王 阅读(6758) 评论(2) 推荐(1) 编辑
摘要: echo 'export HISTTIMEFORMAT="%F %T `whoami` "' >> /etc/profile source /etc/profile 查询如下: 578 2020-03-29 19:08:14 root whoami 579 2020-03-29 19:13:31 r 阅读全文
posted @ 2020-03-29 19:24 天宇轩-王 阅读(273) 评论(0) 推荐(1) 编辑
摘要: yapi简介: YApi 是高效、易用、功能强大的 api 管理平台,旨在为开发、产品、测试人员提供更优雅的接口管理服务。可以帮助开发者轻松创建、发布、维护 API,YApi 还为用户提供了优秀的交互体验,开发人员只需利用平台提供的接口数据写入工具以及简单的点击操作就可以实现接口的管理 特性 基于 阅读全文
posted @ 2020-03-28 23:21 天宇轩-王 阅读(950) 评论(0) 推荐(2) 编辑
摘要: SpringMvc: <mvc:cors> <mvc:mapping path="/**" allowed-origins="*" allow-credentials="true" max-age="1800" allowed-methods="GET,POST,PUT,DELETE,PATCH,O 阅读全文
posted @ 2020-03-27 22:58 天宇轩-王 阅读(370) 评论(2) 推荐(3) 编辑
上一页 1 ··· 63 64 65 66 67 68 69 70 71 ··· 113 下一页