From ed2b43b88a37e6bfe9f268d9882ef15b605d64af Mon Sep 17 00:00:00 2001 From: "alec.zheng" Date: Wed, 24 Jul 2019 18:23:06 +0800 Subject: [PATCH 1/2] new houserush sample framework --- houserush/README.md | 2 + houserush/customer-manage/pom.xml | 86 ++++++++++++++++ houserush/doc/pom.xml | 15 +++ houserush/doc/proposal.md | 16 +++ houserush/gateway/pom.xml | 76 +++++++++++++++ houserush/house-order/pom.xml | 70 +++++++++++++ houserush/login/pom.xml | 78 +++++++++++++++ houserush/pom.xml | 157 ++++++++++++++++++++++++++++++ houserush/realestate/pom.xml | 71 ++++++++++++++ houserush/user-center/pom.xml | 63 ++++++++++++ 10 files changed, 634 insertions(+) create mode 100644 houserush/README.md create mode 100644 houserush/customer-manage/pom.xml create mode 100644 houserush/doc/pom.xml create mode 100644 houserush/doc/proposal.md create mode 100644 houserush/gateway/pom.xml create mode 100644 houserush/house-order/pom.xml create mode 100644 houserush/login/pom.xml create mode 100644 houserush/pom.xml create mode 100644 houserush/realestate/pom.xml create mode 100644 houserush/user-center/pom.xml diff --git a/houserush/README.md b/houserush/README.md new file mode 100644 index 00000000..105187fa --- /dev/null +++ b/houserush/README.md @@ -0,0 +1,2 @@ +TODO +# houserush todo diff --git a/houserush/customer-manage/pom.xml b/houserush/customer-manage/pom.xml new file mode 100644 index 00000000..120d9f19 --- /dev/null +++ b/houserush/customer-manage/pom.xml @@ -0,0 +1,86 @@ + + + + + + houserush + org.apache.servicecomb.samples.practice + 0.0.1-SNAPSHOT + + 4.0.0 + + houserush-customer-manage + Java Chassis::Samples::Practice::HouseRush-Customer-Manage + + + + + + org.springframework.boot + spring-boot-starter + + + + + org.springframework.boot + spring-boot-starter-data-jpa + + + + org.springframework.boot + spring-boot-starter + + + + org.apache.servicecomb + spring-boot-starter-provider + + + + org.apache.servicecomb + handler-flowcontrol-qps + + + org.apache.servicecomb + handler-bizkeeper + + + org.apache.servicecomb + handler-tracing-zipkin + + + + mysql + mysql-connector-java + + + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/houserush/doc/pom.xml b/houserush/doc/pom.xml new file mode 100644 index 00000000..d1537347 --- /dev/null +++ b/houserush/doc/pom.xml @@ -0,0 +1,15 @@ + + + + houserush + org.apache.servicecomb.samples.practice + 0.0.1-SNAPSHOT + + 4.0.0 + + houserush-doc + + + \ No newline at end of file diff --git a/houserush/doc/proposal.md b/houserush/doc/proposal.md new file mode 100644 index 00000000..3d228b6e --- /dev/null +++ b/houserush/doc/proposal.md @@ -0,0 +1,16 @@ +Hi, All + + Recently, I communicated with some ServiceComb new users, they want an e-commerce system ServiceComb sample project with real business background. They think with this demo they can learn ServiceComb’s abilities and usages **more efficiently**. + + Then I found this project https://github.com/apache/servicecomb-samples. So I want to develop an e-commerce system demo and **devote** it to this project as this project’s sub-project. + + *** + + ###The business background of my planing project: + Traditionally, a real estate developer in china will show their nearing completion buildings to the customers for a couple of days, then determine an open sale time for all customers to make real deal offline. Those customers have to get to sale place long before the open sale time and queue up,because only in this way they get the chances to pick the apartment which they like mostly. + So recently, more and more real estate developers begin to build an online apartments/houses open sale system. The e-commerce system help their customer to pick the houses more easily and more fairly. This is the system which I plan to build with ServiceComb. + + ###Why I choose this project as a guiding sample of ServiceComb? + Real estate developers use this system to make a deal with their customer online. So, yes! This is a real e-commerce system with real commercial value. But this is also a real simple e-commerce system which has no payment and shipping module. So Its simplicity is good for the guiding purpose. Meanwhile, because these trading subjects of this system are very expensive,and there will be high QPS when the open sale time just arrives. So There are high requirements for the system’s scalability, availability and robustness.It’s an applicable project to show ServiceComb’s abilities. + + ###Any questions and suggestions? \ No newline at end of file diff --git a/houserush/gateway/pom.xml b/houserush/gateway/pom.xml new file mode 100644 index 00000000..4d457876 --- /dev/null +++ b/houserush/gateway/pom.xml @@ -0,0 +1,76 @@ + + + + + + houserush + org.apache.servicecomb.samples.practice + 0.0.1-SNAPSHOT + + 4.0.0 + + houserush-webapp + Java Chassis::Samples::Practice::HouseRush-webapp + + + + org.springframework.boot + spring-boot-starter + + + org.apache.servicecomb + transport-rest-vertx + + + org.apache.servicecomb + spring-boot-starter-servicecomb + + + org.apache.servicecomb + spring-boot-starter-discovery + + + org.apache.servicecomb + spring-cloud-zuul + + + org.apache.servicecomb + spring-cloud-zuul-zipkin + + + com.auth0 + java-jwt + 3.8.1 + + + org.json + json + 20180813 + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + diff --git a/houserush/house-order/pom.xml b/houserush/house-order/pom.xml new file mode 100644 index 00000000..46890ab1 --- /dev/null +++ b/houserush/house-order/pom.xml @@ -0,0 +1,70 @@ + + + + + + houserush + org.apache.servicecomb.samples.practice + 0.0.1-SNAPSHOT + + 4.0.0 + + houserush-house-order + Java Chassis::Samples::Practice::HouseRush-House-Order + + + + org.springframework.boot + spring-boot-starter + + + org.springframework.boot + spring-boot-starter-data-jpa + + + mysql + mysql-connector-java + + + org.apache.servicecomb + spring-boot-starter-provider + + + org.apache.servicecomb + handler-flowcontrol-qps + + + org.apache.servicecomb + handler-bizkeeper + + + org.apache.servicecomb + handler-tracing-zipkin + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + diff --git a/houserush/login/pom.xml b/houserush/login/pom.xml new file mode 100644 index 00000000..4162f80a --- /dev/null +++ b/houserush/login/pom.xml @@ -0,0 +1,78 @@ + + + + + + houserush + org.apache.servicecomb.samples.practice + 0.0.1-SNAPSHOT + + 4.0.0 + + houserush-login + Java Chassis::Samples::Practice::HouseRush-Login + + + + org.springframework.boot + spring-boot-starter + + + org.springframework.boot + spring-boot-starter-data-jpa + + + + org.springframework.boot + spring-boot-starter + + + + org.apache.servicecomb + spring-boot-starter-provider + + + + org.apache.servicecomb + handler-flowcontrol-qps + + + org.apache.servicecomb + handler-bizkeeper + + + org.apache.servicecomb + handler-tracing-zipkin + + + + mysql + mysql-connector-java + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + diff --git a/houserush/pom.xml b/houserush/pom.xml new file mode 100644 index 00000000..c6e1e1f7 --- /dev/null +++ b/houserush/pom.xml @@ -0,0 +1,157 @@ + + + + 4.0.0 + + org.apache.servicecomb.samples.practice + houserush + Java Chassis::Samples::practice::HouseRush + 0.0.1-SNAPSHOT + pom + + + customer-manage + login + realestate + house-order + user-center + gateway + doc + + + Quick Start Demo for Using ServiceComb Java Chassis + + + UTF-8 + UTF-8 + 1.8 + 1.2.1 + 1.5.14.RELEASE + + + + + + org.apache.servicecomb + java-chassis-dependencies + ${java-chassis.version} + pom + import + + + org.springframework.boot + spring-boot-dependencies + ${spring-boot-1.version} + pom + import + + + org.springframework.boot + spring-boot-starter + ${spring-boot-1.version} + pom + import + + + + mysql + mysql-connector-java + 5.1.47 + + + org.springframework.boot + spring-boot-starter-data-rest + ${spring-boot-1.version} + + + + + + + org.hibernate.validator + hibernate-validator + 6.1.0.Alpha5 + + + javax.validation + validation-api + 2.0.1.Final + + + org.projectlombok + lombok + 1.16.10 + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + 2.0.1.RELEASE + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + 1.8 + 1.8 + + + + org.apache.rat + apache-rat-plugin + 0.13 + + + .travis.yml + **/*.md + **/target/* + + **/resources/ssl/** + + **/*.proto + + **/*.idl + + + + + + + + maven-apache-snapshot + Maven Apache Snapshot + https://repository.apache.org/content/groups/snapshots + + false + + + true + + + + diff --git a/houserush/realestate/pom.xml b/houserush/realestate/pom.xml new file mode 100644 index 00000000..e425b6a9 --- /dev/null +++ b/houserush/realestate/pom.xml @@ -0,0 +1,71 @@ + + + + + + houserush + org.apache.servicecomb.samples.practice + 0.0.1-SNAPSHOT + + 4.0.0 + + houserush-realestate + Java Chassis::Samples::Practice::HouseRush-Realestate + + + + org.springframework.boot + spring-boot-starter + + + org.springframework.boot + spring-boot-starter-data-jpa + + + mysql + mysql-connector-java + + + org.apache.servicecomb + spring-boot-starter-provider + + + org.apache.servicecomb + handler-flowcontrol-qps + + + org.apache.servicecomb + handler-bizkeeper + + + org.apache.servicecomb + handler-tracing-zipkin + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/houserush/user-center/pom.xml b/houserush/user-center/pom.xml new file mode 100644 index 00000000..84718ac8 --- /dev/null +++ b/houserush/user-center/pom.xml @@ -0,0 +1,63 @@ + + + + + + houserush + org.apache.servicecomb.samples.practice + 0.0.1-SNAPSHOT + + 4.0.0 + + houserush-user-center + Java Chassis::Samples::Practice::HouseRush-User-Center + + + + org.springframework.boot + spring-boot-starter + + + org.apache.servicecomb + spring-boot-starter-provider + + + org.apache.servicecomb + handler-flowcontrol-qps + + + org.apache.servicecomb + handler-bizkeeper + + + org.apache.servicecomb + handler-tracing-zipkin + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + From 529cc90136715d97fbfda3fef78b031590db2f00 Mon Sep 17 00:00:00 2001 From: "alec.zheng" Date: Tue, 30 Jul 2019 11:21:56 +0800 Subject: [PATCH 2/2] reformat code with google java code style and add the Readme content --- houserush/README.md | 22 ++- houserush/customer-manage/pom.xml | 13 +- houserush/doc/pom.xml | 20 +-- houserush/gateway/pom.xml | 106 ++++++------ houserush/house-order/pom.xml | 94 +++++------ houserush/login/pom.xml | 106 ++++++------ houserush/pom.xml | 257 +++++++++++++++--------------- houserush/realestate/pom.xml | 94 +++++------ houserush/user-center/pom.xml | 78 ++++----- 9 files changed, 396 insertions(+), 394 deletions(-) diff --git a/houserush/README.md b/houserush/README.md index 105187fa..57b81ee3 100644 --- a/houserush/README.md +++ b/houserush/README.md @@ -1,2 +1,20 @@ -TODO -# houserush todo +### The business background of my planing project: +Traditionally, a real estate developer in china will show their nearing completion buildings to the customers for a couple of days, then determine an open sale time for all customers to make real deal offline. Those customers have to get to sale place long before the open sale time and queue up,because only in this way they get the chances to pick the apartment which they like mostly. +So recently, more and more real estate developers begin to build an online apartments/houses open sale system. The e-commerce system help their customer to pick the houses more easily and more fairly. This is the system which I plan to build with ServiceComb. + +### Why I choose this project as a guiding sample of ServiceComb? +Real estate developers use this system to make a deal with their customer online. So, yes! This is a real e-commerce system with real commercial value. But this is also a real simple e-commerce system which has no payment and shipping module. So Its simplicity is good for the guiding purpose. Meanwhile, because these trading subjects of this system are very expensive,and there will be high QPS when the open sale time just arrives. So There are high requirements for the system’s scalability, availability and robustness.It’s an applicable project to show ServiceComb’s abilities. + +### Requirements & Basic Setup +1. Setup the requirements + - setup git, see [git install overview](https://git-scm.com/book/zh/v2/%E8%B5%B7%E6%AD%A5-%E5%AE%89%E8%A3%85-Git) + - setup JDK 1.8, see [JDK install overview](https://docs.oracle.com/javase/8/docs/technotes/guides/install/install_overview.html) + - setup Maven 3.x, 详情可参考[Maven install guide](https://maven.apache.org/install.html) +2. Setup and run the service center + - setup Docker, see [Docker setup guide](https://www.docker.com/get-started)。 + - input in the terminal $ docker run -d -p 30100:30100 servicecomb/service-center:latestrun service-center at port 30100 +3. Setup the database + +4. check & change the src/main/resources/microservice.yaml and src/main/resources/application.yaml configuration file. + +5. run each microservice process by mvn spring-boot:run. \ No newline at end of file diff --git a/houserush/customer-manage/pom.xml b/houserush/customer-manage/pom.xml index 120d9f19..bab87672 100644 --- a/houserush/customer-manage/pom.xml +++ b/houserush/customer-manage/pom.xml @@ -23,35 +23,29 @@ org.apache.servicecomb.samples.practice 0.0.1-SNAPSHOT + 4.0.0 houserush-customer-manage Java Chassis::Samples::Practice::HouseRush-Customer-Manage - - org.springframework.boot spring-boot-starter - - org.springframework.boot spring-boot-starter-data-jpa - org.springframework.boot spring-boot-starter - org.apache.servicecomb spring-boot-starter-provider - org.apache.servicecomb handler-flowcontrol-qps @@ -64,14 +58,10 @@ org.apache.servicecomb handler-tracing-zipkin - mysql mysql-connector-java - - - @@ -82,5 +72,4 @@ - diff --git a/houserush/doc/pom.xml b/houserush/doc/pom.xml index d1537347..c3b64867 100644 --- a/houserush/doc/pom.xml +++ b/houserush/doc/pom.xml @@ -1,15 +1,15 @@ - - houserush - org.apache.servicecomb.samples.practice - 0.0.1-SNAPSHOT - - 4.0.0 - - houserush-doc + 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"> + + houserush + org.apache.servicecomb.samples.practice + 0.0.1-SNAPSHOT + + 4.0.0 + houserush-doc + Java Chassis::Samples::Practice::HouseRush-Doc \ No newline at end of file diff --git a/houserush/gateway/pom.xml b/houserush/gateway/pom.xml index 4d457876..a0c2a7c0 100644 --- a/houserush/gateway/pom.xml +++ b/houserush/gateway/pom.xml @@ -17,60 +17,60 @@ --> - - houserush - org.apache.servicecomb.samples.practice - 0.0.1-SNAPSHOT - - 4.0.0 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + houserush + org.apache.servicecomb.samples.practice + 0.0.1-SNAPSHOT + + 4.0.0 - houserush-webapp - Java Chassis::Samples::Practice::HouseRush-webapp + houserush-webapp + Java Chassis::Samples::Practice::HouseRush-webapp - - - org.springframework.boot - spring-boot-starter - - - org.apache.servicecomb - transport-rest-vertx - - - org.apache.servicecomb - spring-boot-starter-servicecomb - - - org.apache.servicecomb - spring-boot-starter-discovery - - - org.apache.servicecomb - spring-cloud-zuul - - - org.apache.servicecomb - spring-cloud-zuul-zipkin - - - com.auth0 - java-jwt - 3.8.1 - - - org.json - json - 20180813 - - + + + org.springframework.boot + spring-boot-starter + + + org.apache.servicecomb + transport-rest-vertx + + + org.apache.servicecomb + spring-boot-starter-servicecomb + + + org.apache.servicecomb + spring-boot-starter-discovery + + + org.apache.servicecomb + spring-cloud-zuul + + + org.apache.servicecomb + spring-cloud-zuul-zipkin + + + com.auth0 + java-jwt + 3.8.1 + + + org.json + json + 20180813 + + - - - - org.springframework.boot - spring-boot-maven-plugin - - - + + + + org.springframework.boot + spring-boot-maven-plugin + + + diff --git a/houserush/house-order/pom.xml b/houserush/house-order/pom.xml index 46890ab1..0864e00f 100644 --- a/houserush/house-order/pom.xml +++ b/houserush/house-order/pom.xml @@ -17,54 +17,54 @@ --> - - houserush - org.apache.servicecomb.samples.practice - 0.0.1-SNAPSHOT - - 4.0.0 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + houserush + org.apache.servicecomb.samples.practice + 0.0.1-SNAPSHOT + + 4.0.0 - houserush-house-order - Java Chassis::Samples::Practice::HouseRush-House-Order + houserush-house-order + Java Chassis::Samples::Practice::HouseRush-House-Order - - - org.springframework.boot - spring-boot-starter - - - org.springframework.boot - spring-boot-starter-data-jpa - - - mysql - mysql-connector-java - - - org.apache.servicecomb - spring-boot-starter-provider - - - org.apache.servicecomb - handler-flowcontrol-qps - - - org.apache.servicecomb - handler-bizkeeper - - - org.apache.servicecomb - handler-tracing-zipkin - - + + + org.springframework.boot + spring-boot-starter + + + org.springframework.boot + spring-boot-starter-data-jpa + + + mysql + mysql-connector-java + + + org.apache.servicecomb + spring-boot-starter-provider + + + org.apache.servicecomb + handler-flowcontrol-qps + + + org.apache.servicecomb + handler-bizkeeper + + + org.apache.servicecomb + handler-tracing-zipkin + + - - - - org.springframework.boot - spring-boot-maven-plugin - - - + + + + org.springframework.boot + spring-boot-maven-plugin + + + diff --git a/houserush/login/pom.xml b/houserush/login/pom.xml index 4162f80a..917993dd 100644 --- a/houserush/login/pom.xml +++ b/houserush/login/pom.xml @@ -17,62 +17,58 @@ --> - - houserush - org.apache.servicecomb.samples.practice - 0.0.1-SNAPSHOT - - 4.0.0 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + houserush + org.apache.servicecomb.samples.practice + 0.0.1-SNAPSHOT + + 4.0.0 - houserush-login - Java Chassis::Samples::Practice::HouseRush-Login + houserush-login + Java Chassis::Samples::Practice::HouseRush-Login - - - org.springframework.boot - spring-boot-starter - - - org.springframework.boot - spring-boot-starter-data-jpa - + + + org.springframework.boot + spring-boot-starter + + + org.springframework.boot + spring-boot-starter-data-jpa + + + org.springframework.boot + spring-boot-starter + + + org.apache.servicecomb + spring-boot-starter-provider + + + org.apache.servicecomb + handler-flowcontrol-qps + + + org.apache.servicecomb + handler-bizkeeper + + + org.apache.servicecomb + handler-tracing-zipkin + + + mysql + mysql-connector-java + + - - org.springframework.boot - spring-boot-starter - - - - org.apache.servicecomb - spring-boot-starter-provider - - - - org.apache.servicecomb - handler-flowcontrol-qps - - - org.apache.servicecomb - handler-bizkeeper - - - org.apache.servicecomb - handler-tracing-zipkin - - - - mysql - mysql-connector-java - - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - + + + + org.springframework.boot + spring-boot-maven-plugin + + + diff --git a/houserush/pom.xml b/houserush/pom.xml index c6e1e1f7..eeb3987e 100644 --- a/houserush/pom.xml +++ b/houserush/pom.xml @@ -16,142 +16,141 @@ --> - 4.0.0 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + 4.0.0 - org.apache.servicecomb.samples.practice - houserush - Java Chassis::Samples::practice::HouseRush - 0.0.1-SNAPSHOT - pom + org.apache.servicecomb.samples.practice + houserush + Java Chassis::Samples::practice::HouseRush + 0.0.1-SNAPSHOT + pom - - customer-manage - login - realestate - house-order - user-center - gateway - doc - + + customer-manage + login + realestate + house-order + user-center + gateway + doc + - Quick Start Demo for Using ServiceComb Java Chassis + Quick Start Demo for Using ServiceComb Java Chassis - - UTF-8 - UTF-8 - 1.8 - 1.2.1 - 1.5.14.RELEASE - - - - - - org.apache.servicecomb - java-chassis-dependencies - ${java-chassis.version} - pom - import - - - org.springframework.boot - spring-boot-dependencies - ${spring-boot-1.version} - pom - import - - - org.springframework.boot - spring-boot-starter - ${spring-boot-1.version} - pom - import - - - - mysql - mysql-connector-java - 5.1.47 - - - org.springframework.boot - spring-boot-starter-data-rest - ${spring-boot-1.version} - - - + + UTF-8 + UTF-8 + 1.8 + 1.2.1 + 1.5.14.RELEASE + + - - org.hibernate.validator - hibernate-validator - 6.1.0.Alpha5 - - - javax.validation - validation-api - 2.0.1.Final - - - org.projectlombok - lombok - 1.16.10 - + + org.apache.servicecomb + java-chassis-dependencies + ${java-chassis.version} + pom + import + + + org.springframework.boot + spring-boot-dependencies + ${spring-boot-1.version} + pom + import + + + org.springframework.boot + spring-boot-starter + ${spring-boot-1.version} + pom + import + + + mysql + mysql-connector-java + 5.1.47 + + + org.springframework.boot + spring-boot-starter-data-rest + ${spring-boot-1.version} + + + + + + org.hibernate.validator + hibernate-validator + 6.1.0.Alpha5 + + + javax.validation + validation-api + 2.0.1.Final + + + org.projectlombok + lombok + 1.16.10 + + - - - - - org.springframework.boot - spring-boot-maven-plugin - 2.0.1.RELEASE - - - + + + + + org.springframework.boot + spring-boot-maven-plugin + 2.0.1.RELEASE + + + - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - 1.8 - 1.8 - - - - org.apache.rat - apache-rat-plugin - 0.13 - - - .travis.yml - **/*.md - **/target/* - - **/resources/ssl/** - - **/*.proto - - **/*.idl - - - - - - - - maven-apache-snapshot - Maven Apache Snapshot - https://repository.apache.org/content/groups/snapshots - - false - - - true - - - + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + 1.8 + 1.8 + + + + org.apache.rat + apache-rat-plugin + 0.13 + + + .travis.yml + **/*.md + **/target/* + + **/resources/ssl/** + + **/*.proto + + **/*.idl + + + + + + + + maven-apache-snapshot + Maven Apache Snapshot + https://repository.apache.org/content/groups/snapshots + + false + + + true + + + diff --git a/houserush/realestate/pom.xml b/houserush/realestate/pom.xml index e425b6a9..c4f659df 100644 --- a/houserush/realestate/pom.xml +++ b/houserush/realestate/pom.xml @@ -17,55 +17,55 @@ --> - - houserush - org.apache.servicecomb.samples.practice - 0.0.1-SNAPSHOT - - 4.0.0 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + houserush + org.apache.servicecomb.samples.practice + 0.0.1-SNAPSHOT + + 4.0.0 - houserush-realestate - Java Chassis::Samples::Practice::HouseRush-Realestate + houserush-realestate + Java Chassis::Samples::Practice::HouseRush-Realestate - - - org.springframework.boot - spring-boot-starter - - - org.springframework.boot - spring-boot-starter-data-jpa - - - mysql - mysql-connector-java - - - org.apache.servicecomb - spring-boot-starter-provider - - - org.apache.servicecomb - handler-flowcontrol-qps - - - org.apache.servicecomb - handler-bizkeeper - - - org.apache.servicecomb - handler-tracing-zipkin - - + + + org.springframework.boot + spring-boot-starter + + + org.springframework.boot + spring-boot-starter-data-jpa + + + mysql + mysql-connector-java + + + org.apache.servicecomb + spring-boot-starter-provider + + + org.apache.servicecomb + handler-flowcontrol-qps + + + org.apache.servicecomb + handler-bizkeeper + + + org.apache.servicecomb + handler-tracing-zipkin + + - - - - org.springframework.boot - spring-boot-maven-plugin - - - + + + + org.springframework.boot + spring-boot-maven-plugin + + + diff --git a/houserush/user-center/pom.xml b/houserush/user-center/pom.xml index 84718ac8..52dc4f6e 100644 --- a/houserush/user-center/pom.xml +++ b/houserush/user-center/pom.xml @@ -17,47 +17,47 @@ --> - - houserush - org.apache.servicecomb.samples.practice - 0.0.1-SNAPSHOT - - 4.0.0 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + houserush + org.apache.servicecomb.samples.practice + 0.0.1-SNAPSHOT + + 4.0.0 - houserush-user-center - Java Chassis::Samples::Practice::HouseRush-User-Center + houserush-user-center + Java Chassis::Samples::Practice::HouseRush-User-Center - - - org.springframework.boot - spring-boot-starter - - - org.apache.servicecomb - spring-boot-starter-provider - - - org.apache.servicecomb - handler-flowcontrol-qps - - - org.apache.servicecomb - handler-bizkeeper - - - org.apache.servicecomb - handler-tracing-zipkin - - + + + org.springframework.boot + spring-boot-starter + + + org.apache.servicecomb + spring-boot-starter-provider + + + org.apache.servicecomb + handler-flowcontrol-qps + + + org.apache.servicecomb + handler-bizkeeper + + + org.apache.servicecomb + handler-tracing-zipkin + + - - - - org.springframework.boot - spring-boot-maven-plugin - - - + + + + org.springframework.boot + spring-boot-maven-plugin + + +