封装方法 import axios from 'axios' const allowIP = ['119.133.5.19']; //允许访问 async function getIp() { const res=await axios.get('https://api.ipify.org/')// ...
分类:
其他好文 时间:
2021-06-28 18:55:02
阅读次数:
0
1.组件规范,来自于标准组织,对web compnents的规范 2.vue的组件,包含的事件 v-on这种写法只是提供了便捷的绑定事件方式,并没有改变原生的JS事件,所以所有的原生JS事件都是支持的 MDN事件类型一览表 https://developer.mozilla.org/zh-CN/do ...
分类:
其他好文 时间:
2021-06-28 18:38:24
阅读次数:
0
处理时间的场景在软件开发中很常见,JDK提供了Date和Calendar,然而这套API并不是很好用。这里推荐使用JodaTime来进行时间的处理。这里放上JodaTime的官网地址:https://www.joda.org/joda-time/ Maven中央库中的依赖: <!-- https:/ ...
分类:
其他好文 时间:
2021-06-28 17:58:55
阅读次数:
0
说明:SpringBoot使用@Scheduled创建定时任务 package com.lch.task; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.sc ...
分类:
其他好文 时间:
2021-06-28 17:53:36
阅读次数:
0
BeanUtils.copyProperties引入不同的包,赋值顺序不同举例BeanUtils.copyProperties(a, b)1、当引入org.springframework.beans.BeanUtils时,a拷贝到b2、当引入org.apache.commons.beanutils. ...
分类:
其他好文 时间:
2021-06-28 17:44:13
阅读次数:
0
基本知识:Sqoop导出的基本用法:https://sqoop.apache.org/docs/1.4.6/SqoopUserGuide.html#_syntax_4 的10. sqoop-export 内容摘要:本文主要是对--update-mode参数的用法进行了验证。结论如下: --updat ...
分类:
数据库 时间:
2021-06-25 17:26:06
阅读次数:
0
首先:Maven中央仓库的搜索全部公共jar包的地址是,http://search.maven.org/ Maven基础-默认中央仓库 当我们创建一个简单的Maven项目后(只需要在pom.xml配置好依赖),运行mvn clean install就可以把项目构建好,不需要我们手工下载任何jar,这 ...
分类:
其他好文 时间:
2021-06-25 17:25:52
阅读次数:
0
导入相关的pom依赖 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka-server</artifactId> <version>1.4.6.RELEAS ...
分类:
编程语言 时间:
2021-06-25 17:16:29
阅读次数:
0
网上的写法,都有点不太一样。 首先,看一下我的gateway版本 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-gateway</artifactId> <vers ...
分类:
其他好文 时间:
2021-06-25 17:10:18
阅读次数:
0
import com.alibaba.fastjson.JSON; import org.apache.commons.lang.StringUtils; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; ...
分类:
Web程序 时间:
2021-06-25 17:08:46
阅读次数:
0