這篇文章主要介紹了如何實(shí)現(xiàn)java版spring cloud+spring boot+redis多租戶社交電子商務(wù)平臺(tái),具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
成都創(chuàng)新互聯(lián)公司專注于衛(wèi)濱企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站,電子商務(wù)商城網(wǎng)站建設(shè)。衛(wèi)濱網(wǎng)站建設(shè)公司,為衛(wèi)濱等地區(qū)提供建站服務(wù)。全流程按需定制制作,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)
1. 創(chuàng)建一個(gè)名為particle-common-eureka的maven項(xiàng)目,繼承particle-commonservice,具體的pom.xml配置文件如下:
Xml代碼
<?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"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.ml.honghu</groupId>
<artifactId>particle-commonservice</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>particle-commonservice-eureka</artifactId>
<packaging>jar</packaging>
<name>particle-commonservice-eureka</name>
<description>particle-commonservice project for Spring Boot</description>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<id>1</id>
<goals>
<goal>repackage</goal>
</goals>
</execution>
<execution>
<id>2</id>
<goals>
<goal>build-info</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>true</executable>
</configuration>
</plugin>
</plugins>
</build>
</project>
2. 在啟動(dòng)類入口引用eureka的相關(guān)配置,代碼如下:
Java代碼
package com.ml.honghu;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@EnableEurekaServer
@SpringBootApplication
public class ServiceApplication {
public static void main(String[] args) {
SpringApplication.run(ServiceApplication.class, args);
}
}
3. 配置application.yml文件
# server (eureka 默認(rèn)端口為:8761)
server:
port: 8761
# spring
spring:
application:
name: particle-commonservice-erueka
# eureka
eureka:
client:
# 是否注冊(cè)到eureka
register-with-eureka: true
# 是否從eureka獲取注冊(cè)信息
fetch-registry: false
availability-zones:
honghu: honghuZone
service-url:
honghuZone: http://honghu:123456@localhost:8761/eureka/
defaultZone: http://honghu:123456@localhost:8761/eureka/
instance:
prefer-ip-address: true
hostname: localhost
metadataMap:
zone: honghuZone
user: ${security.user.name}
password: {security.user.password}
# 指定環(huán)境
environment: dev
#指定數(shù)據(jù)中心
datacenter: honghu
# 關(guān)閉自我保護(hù)模式
server:
enable-self-preservation: false
#設(shè)置清理無效節(jié)點(diǎn)的時(shí)間間隔,默認(rèn)60000,即是60s
eviction-interval-timer-in-ms: 60000
# 服務(wù)認(rèn)證
security:
basic:
enabled: true
user:
name: honghu
password: 123456
management:
security:
enabled: false
4. 增加項(xiàng)目的log機(jī)制和打包運(yùn)行機(jī)制(后面我們會(huì)詳細(xì)編寫針對(duì)于Linux Centos下的打包部署機(jī)制)
5. 自此整個(gè)項(xiàng)目部署完成,通過手動(dòng)方式進(jìn)行Run As --> Spring Boot App,運(yùn)行結(jié)果如下:
控制臺(tái)運(yùn)行結(jié)果:
訪問控制臺(tái)并登陸:
控制臺(tái)運(yùn)行效果:
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“如何實(shí)現(xiàn)java版spring cloud+spring boot+redis多租戶社交電子商務(wù)平臺(tái)”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!
分享文章:如何實(shí)現(xiàn)java版springcloud+springboot+redis多租戶社交電子商務(wù)平臺(tái)
文章地址:http://jinyejixie.com/article6/pppjig.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站導(dǎo)航、企業(yè)網(wǎng)站制作、移動(dòng)網(wǎng)站建設(shè)、網(wǎng)站策劃、ChatGPT、商城網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)