package List; import java.util.ArrayList; public class Demo01 { public static void main(String[] args) {// demo01();// demo02();// demo03(); ArrayList ...
分类:
其他好文 时间:
2021-01-05 11:27:22
阅读次数:
0
1.概述 基本说明 官网 上一代网关 zuul https://github.com/Netflix/zuul/wiki 当前gateway https://cloud.spring.io/spring-cloud-static/spring-cloud-gateway/2.2.1.RELEASE/ ...
分类:
编程语言 时间:
2021-01-05 10:55:55
阅读次数:
0
import redis.clients.jedis.Jedis;public class A { public static void main(String[] args) throws Exception { Jedis jedis = new Jedis("localhost", 6379) ...
分类:
其他好文 时间:
2021-01-05 10:52:53
阅读次数:
0
Java解析XML文件 XML是什么 XML是可扩展标记语言(EXtensible Markup Language) XML是一种标记语言(HTML也是标记语言) XML是用来传输和存储数据(HTML是用来显示数据) XML的语法规则 所以XML元素都必须有关闭标签 XML标签是对大小写敏感 XML ...
分类:
编程语言 时间:
2021-01-05 10:51:27
阅读次数:
0
1. 问号后面带的参数 url:http://localhost:4200/news?key=japan html 调用方法: <a [routerLink]="['/news']" [queryParams]="{key:'japan'}"> 跳转 ts 调用方法: private router: ...
分类:
其他好文 时间:
2021-01-05 10:50:30
阅读次数:
0
在nginx配置中添加 location / { try_files $uri $uri/ @router; index index.html; } location @router { rewrite ^.*$ /index.html last; } ...
分类:
其他好文 时间:
2021-01-04 11:32:56
阅读次数:
0
题目描述 输入一个链表的头节点,从尾到头反过来返回每个节点的值(用数组返回)。 示例 1: 输入:head = [1,3,2] 输出:[2,3,1] 限制: 0 ? 链表长度 ? 10000 Java public class Solution06 { public static void main ...
分类:
其他好文 时间:
2021-01-04 11:07:36
阅读次数:
0
文档 是这样的 function useQuery() { return new URLSearchParams(useLocation().search); } 使用 function demo (){ const history = useHistory(); history.get('name ...
分类:
其他好文 时间:
2021-01-04 10:59:19
阅读次数:
0
/** *获取对应日期的288个时刻点 two hundred and eighty-eight *@date 2017-11-24 下午4:06:14 *@author Administrator (chenrd) */ public static List<String> getTwoHundr ...
分类:
其他好文 时间:
2021-01-04 10:47:27
阅读次数:
0
1 import App from "@/App.vue" 2 import Vue from 'vue'; 3 import { shallowMount, mount, createLocalVue } from "@vue/test-utils" 4 import "babel-polyfil ...
分类:
移动开发 时间:
2021-01-04 10:37:16
阅读次数:
0