Skip to content

Commit d9a504f

Browse files
authored
Update spring-cloud.md
1 parent 68cf0e5 commit d9a504f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/spring-cloud.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
From the Activiti framework point of view we rely in 3 key aspects from Spring Boot / Spring Cloud / Spring Cloud Kubernetes which enable our components \(such as the Process Runtime\) to integrate nicely with the rest of the infrastructure.
44

5-
First of all we rely on Spring Boot HATEOAS for all of our REST endpoints making sure that they are aligned and we have minimal code to maintain. We also provide an alternate format for the JSON payloads to follow the Alfresco API guidelines. Spring Boot is our weapon of choice to create our microservices. We rely on Spring Boot to provide the basic set of frameworks tested together to create REST endpoints and Dependency Injection to bootstrap our services. We heavily rely on the Spring Boot Starter concept, where we use @EnableAutoConfiguration's to create all the beans that will be required in runtime. These AutoConfigurations also help us to provide configurations points to parameterize the behaviour of our provided services.
5+
First of all we rely on Spring Boot HATEOAS for all of our REST endpoints making sure that they are aligned and we have minimal code to maintain. We also provide an alternate format for the JSON payloads to follow the Alfresco API guidelines. Spring Boot is our weapon of choice to create our microservices. We rely on Spring Boot to provide the basic set of frameworks tested together to create REST endpoints and Dependency Injection to bootstrap our services. We heavily rely on the Spring Boot Starter concept, where we use @EnableAutoConfiguration's to create all the beans that will be required in runtime. These AutoConfigurations also help us to provide configuration points to parameterize the behaviour of our provided services.
66

77
Secondly, we rely heavily on Spring Cloud Stream to make sure that we can consume and emit events in an asynchronous manner. This is a key enabler for making sure that independent components can collaborate without being tightly coupled. Spring Cloud Streams support the concepts of Binders which allow us to use different implementations of the underlaying Message Brokers such as: RabbitMQ, Kafka, Amazon SQS, etc.
88

0 commit comments

Comments
 (0)