上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 报错:java: java.lang.NoSuchFieldError: Class com.sun.tools.javac.tree.JCTree$JCImport does not have member field 'com.sun.tools.javac.tree.JCTree qualid 阅读全文
posted @ 2023-12-08 14:33 五字妹妹实在是棒 阅读(4990) 评论(1) 推荐(1)
摘要: redis ```markdown # 使用brew安装redis 不指定版本默认最新版本 brew install redis # 启动redis redis-server # 连接本地redis redis-cli # 连接远程服务器redis redis-cli -h ip地址 -p 6379 阅读全文
posted @ 2023-07-12 18:26 五字妹妹实在是棒 阅读(23) 评论(0) 推荐(0)
摘要: pom文件: ```xml com.google.guava guava 31.1-jre ``` 代码: ```java package com.example.core.utils.collections; import com.google.common.collect.Maps; impor 阅读全文
posted @ 2023-07-12 17:06 五字妹妹实在是棒 阅读(1478) 评论(0) 推荐(0)
摘要: ![npm init vue](https://img2023.cnblogs.com/blog/2083812/202304/2083812-20230406151215109-18634287.png) 阅读全文
posted @ 2023-04-06 15:13 五字妹妹实在是棒 阅读(16) 评论(0) 推荐(0)
摘要: 轻量级web服务器、反向代理服务器 内存占用少、启动快、高并发 过程: 客户端访问-->(负载均衡/)Nginx-->tomcat/-->SOA 反向代理: 客户端访问-->转发-->代理到内网。 反向代理"代理"的是服务器端 Master-Worker模式 启动Nginx-->80端口启动了Soc 阅读全文
posted @ 2023-04-05 14:18 五字妹妹实在是棒 阅读(46) 评论(0) 推荐(0)
摘要: 备注: ngnix配置文件:/usr/local/nginx/conf/nginx.conf 可配置前后端路径、文件下载路径 前提:两台服务器可以ping通过 把所在服务器的文件复制到10.1.3.155上 格式:scp -r 所在服务器:所在服务器文件 目标服务器:目标服务器文件 1、复制文件 s 阅读全文
posted @ 2023-04-05 10:57 五字妹妹实在是棒 阅读(30) 评论(0) 推荐(0)
摘要: ![创建新的虚拟机](https://img2022.cnblogs.com/blog/2083812/202210/2083812-20221031135152289-1575344007.png) ![固件类型UEFI](https://img2022.cnblogs.com/blog/2083812/202210/2083812-20221031135239938-1778333383.pn 阅读全文
posted @ 2023-03-10 14:43 五字妹妹实在是棒 阅读(29) 评论(0) 推荐(0)
摘要: Oracle含有序列的事务进行回滚,序列不会回到事务前状态。 -- 方法一: 序列 -- Created on 2023/3/10 by 112691 declare -- Local variables here v_cnt number; begin -- Test statements her 阅读全文
posted @ 2023-03-10 14:03 五字妹妹实在是棒 阅读(694) 评论(0) 推荐(1)
摘要: -- Oracle sql # 查询Oracle版本 select * from v$version; 阅读全文
posted @ 2023-03-10 14:03 五字妹妹实在是棒 阅读(30) 评论(0) 推荐(0)
摘要: @Scheduled属性 // // Source code recreated from a .class file by IntelliJ IDEA // (powered by FernFlower decompiler) // package org.springframework.sche 阅读全文
posted @ 2023-03-10 14:02 五字妹妹实在是棒 阅读(70) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 8 下一页
返回顶部