摘要: 使用的SpringBoot的版本是 2.1.3.RELEASE 首先添加Dubbo相关依赖 <!--引入dubbo的依赖 --> <dependency> <groupId>com.alibaba.boot</groupId> <artifactId>dubbo-spring-boot-starte 阅读全文
posted @ 2022-01-14 16:46 IT6889 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 1、下载需要安装的源码安装包 wget http://nginx.org/download/nginx-1.13.0.tar.gz wget https://ftp.pcre.org/pub/pcre/pcre-8.40.tar.gz wget wget http://zlib.net/zlib-1 阅读全文
posted @ 2022-01-14 16:39 IT6889 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 配置Nginx做反向代理,自己简单的做了一下 1、首先配置项目,让项目可以直接通过IP:端口的形式直接访问,可以修改项目的部署位置,改到webapps下的ROOT目录下即可,我是Eclipse下 起的服务,所以需要在IDE 中直接修改即可 在项目上右击 Properties web project 阅读全文
posted @ 2022-01-14 16:37 IT6889 阅读(646) 评论(0) 推荐(0) 编辑
摘要: java 8中新增了Stream流,大大简化了对各种数据类型的操作; 下面我总结了一些Stream对各种数据结构的操作; 准备数据: public class Student { private String age; private Integer sex; public String getAg 阅读全文
posted @ 2022-01-14 16:31 IT6889 阅读(352) 评论(0) 推荐(0) 编辑
摘要: 报错信息大概如下: Error running 'xxx': Command line is too long. Shorten command line for xxx or also for Application default configuration. 解决方案(1): 找到项目下的.i 阅读全文
posted @ 2022-01-14 14:16 IT6889 阅读(917) 评论(0) 推荐(0) 编辑