Skip to main content

Communication among micro-services

Comments

Popular posts from this blog

Using Activiti with spring mvc

Follow below steps to create web application using spring mvc and activiti in background steps :1 create maven project with following pom 4.0.0 com.gk activitiMakerChecker war 0.0.1-SNAPSHOT activitiMakerChecker Maven Webapp http://maven.apache.org 4.2.4.RELEASE 1.6 4.0.5.RELEASE 1.2 3.1.0 4.0.1.Final 3.5.6-Final org.activiti activiti-engine 5.14 org.activiti activiti-spring 5.14 org.springframework spring-beans ${org.springframework.version} org.springframework spring-context 4.2.4.RELEASE org.springframework spring-jdbc 4.2.4.RELEASE org.springframework spring-tx 4.2.4.RELEASE org.springframework spring-orm ${org.springframework.version} org.slf4j slf4j-api 1.7.2 org.hibernate hibernate-core ${org.hibernate.version} org.hibernate hibernate-entitymanager ${org.h...

Reactive programming

As per wikipedia reactive programming is declarative programming paradigm concerned with data streams and the propagation of change. Reactive programming is about having an architecture which has below four key components: Message driven  Scalable Resilient Responsive There lot of libraries/frameworks available which enable doing reactive programming across programming languages for ex in java we have RxJava, Project Reactor. Also spring 5 on wards spring framework also supports reactive programming.