Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikebbers committed Mar 15, 2018
1 parent ec94f26 commit da71d7e
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 1 deletion.
16 changes: 15 additions & 1 deletion remoting-microservices/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,23 @@ data from different servers.

TODO

![modules](readme/modules.png "modules")

## Start the sample

TODO
The sample provides 2 Spring Boot based microservices.

### Spring Boot server 1
To start the Spring Boot server simply run `mvn spring-boot:run` from the `server-spring-data1` folder. Next to this the
server can be started by the `com.canoo.platform.samples.microservices.product.ProductServer` class.

The server is running at `http://localhost:8080`

### Spring Boot server 2
To start the Spring Boot server simply run `mvn spring-boot:run` from the `server-spring-data2` folder. Next to this the
server can be started by the `com.canoo.platform.samples.microservices.product.ProductServer` class.

The server is running at `http://localhost:8081`

## License
The project is released as open source under the [Apache License Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)
Expand Down
Binary file added remoting-microservices/readme/modules.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions remoting-microservices/server-spring-data1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,14 @@
<version>${dolphin-platform.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.5.9.RELEASE</version>
</plugin>
</plugins>
</build>
</project>
10 changes: 10 additions & 0 deletions remoting-microservices/server-spring-data2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,14 @@
<version>${dolphin-platform.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.5.9.RELEASE</version>
</plugin>
</plugins>
</build>
</project>

0 comments on commit da71d7e

Please sign in to comment.