Spring Cloud Alibaba
文章平均质量分 55
未来,值得期待
未来岁月漫长,依旧值得期待!
展开
-
curl能访问但是浏览器不能访问
在Virtual Machines中安装centos7,centos7中运行dockerdocker运行两个nginx容器,开放8001,8002端口查看防火墙状态查看开放端口curl可以访问浏览器不能访问!问题解决:浏览器设置了代理!浏览器设置了代理!取消浏览器代理!...原创 2021-12-02 16:11:48 · 8054 阅读 · 10 评论 -
Spring Cloud Alibaba-整合Dubbo
目录1.API2.生产者3.消费者4.父工程POM文件5.运行效果6.源码下载1.APIspring-cloud-dubbo-sample-api<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"原创 2021-11-19 11:26:38 · 938 阅读 · 1 评论 -
idea spring boot maven打包
1.项目结构my-shopping 为父工程shopping-domain 为子工程,为domain项目,没有启动程序shopping-service-user 为子工程,需要依赖shopping-domainshopping-domain,shopping-service-user都要继承父类my-shopping2.pom文件配置打包只需要关注配置文件中的<build> *** </build>内容如果打包的项目没有<mainC...原创 2021-11-13 17:27:36 · 597 阅读 · 0 评论 -
spring boot整合nacos报错:Consider defining a bean of type ‘com.netflix.client.config.IClientConfig‘ in y
spring boot整合nacos报错:Consider defining a bean of type 'com.netflix.client.config.IClientConfig' in your configuration.问题原因代码:import org.mybatis.spring.annotation.MapperScan;import org.springframework.boot.SpringApplication;import org.springframewo原创 2021-11-11 09:51:40 · 1575 阅读 · 0 评论 -
Spring Cloud Alibaba-搭建Nginx
1.下载nginxnginx-1.18.0.tar.gz2.安装步骤# 安装依赖yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel# 解压缩tar -zxvf nginx-1.18.0.tar.gzcd nginx-1.18.0# 执行配置./configure# 编译安装(默认安装在/usr/local/nginx)makemake install3.开放端口80,8487端口80..原创 2021-10-11 23:36:14 · 647 阅读 · 0 评论 -
Spring Cloud Alibaba-搭建nacos集群
1.配置nacos集群(先配置一台)1.1下载nacos安装包nacos-server-2.0.3.tar.gztar -zxvf nacos-server-2.0.3.tar.gz1.2导入nacos-mysql.sql建立数据库nacos_config,导入nacos-mysql.sql文件数据,sql文件中的内容不用做任何修改INSERT INTO users (username, password, enabled) VALUES ('nacos', '$2a$10$E.原创 2021-10-11 22:30:08 · 342 阅读 · 0 评论