整合feign 首先需要在下单的服务中整合 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> <version>2.2.3 ...
分类:
其他好文 时间:
2021-05-24 07:39:25
阅读次数:
0
1、Form连接数据库apps/apps@TEST 2、plsql模拟界面环境(初始化)8008初始化begin fnd_global.APPS_INITIALIZE(user_id => 1671,resp_id =>50716 ,resp_appl_id => 401); mo_global.i ...
分类:
数据库 时间:
2021-05-24 07:15:58
阅读次数:
0
添加docker group: sudo groupadd docker 将当前用户添加到docker组: sudo gpasswd -a ${USER} docker 重启docker服务: sudo service docker restart 安装Docker Cpmpose 从 官方 Git ...
分类:
其他好文 时间:
2021-05-24 07:08:15
阅读次数:
0
前言 部署CentOS7的时候分配的动态扩充虚拟磁盘,共1T大小,在安装Centos时默认分区,系统仅给/分配50G,而大量空间都挂载到/home下,最近CentOS7使用中发现空间已不足够,所以就想如何将/home下的空间重新分配扩容到/下。 配置过程 查看分区大小 df -h 或者lsblk [ ...
分类:
其他好文 时间:
2021-05-24 06:24:49
阅读次数:
0
Docker容器管理基础 运行第一个容器,容器启动必须依赖镜像。 [root@localhost ~]# docker image ls #首先查看已有的镜像REPOSITORY TAG IMAGE ID CREATED SIZEnginx latest 62d49f9bab67 3 weeks a ...
分类:
其他好文 时间:
2021-05-24 05:44:20
阅读次数:
0
1、用两层循环计算,前提条件是数据已经按分组的列排好序的。 1 DataTable dt = new DataTable(); 2 dt.Columns.AddRange(new DataColumn[] { new DataColumn("name", typeof(string)), 3 new ...
难度 medium 给定一个字符串数组,将字母异位词组合在一起。字母异位词指字母相同,但排列不同的字符串。 示例: 输入: ["eat", "tea", "tan", "ate", "nat", "bat"] 输出: [ ["ate","eat","tea"], ["nat","tan"], ["b ...
分类:
其他好文 时间:
2021-05-24 05:09:36
阅读次数:
0
Git 和 HTTPS git clone https://xxx.daFei 会返回 SSL certificate problem: unable to get local issuer certificate,这时候需要把HTTPS关闭一下 git config --global http.s ...
分类:
Web程序 时间:
2021-05-24 04:28:43
阅读次数:
0
Accounts used for Azure AD Connect Azure AD Connect uses 3 accounts in order to synchronize information from on-premises or Windows Server Active Dire ...
分类:
其他好文 时间:
2021-05-24 04:09:23
阅读次数:
0
python中global关键字实现在函数内部对全局变量进行修改。 1、测试 >>> v = 10 >>> def test(): v = 5 print(v) >>> test() 5 >>> v ## 这说明在函数内部修改的全局变量只能在函数内部生效,不会真正影响全局变量 10 加global关 ...
分类:
编程语言 时间:
2021-05-24 03:51:31
阅读次数:
0