In my previous two articles, I describe lots about Bounded context and context map, where we have learned, How to segregate the domain models using Bounded context? Also learned, How to use context map judiciously to understand...
Home » All posts
DDD::Interchange Context and Microservices
in
building microservices,
Domain driven design,
Microservice
- on July 17, 2018
- No comments
DDD: Thinking in terms of Context Map
in
building microservices,
DDD,
design pattern,
Domain driven design,
java microservices,
Microservice
- on May 28, 2018
- No comments

In my previous article, I did a detailed discussion about the Bounded Context and learn that how to tackle the complexity of a Domain, it is the best way to divide the domains into several subdomains and mapped them with different bounded contexts...
Bounded Context in my view
in
DDD,
design pattern java,
design principles in java,
java,
Microservice
- on April 28, 2018
- No comments

In this article, I will share my view about Bounded Context,
What does it mean,?
Why is it required?
The connection between Bounded context and Microservices.
I will try to keep it simple, and this article targeted to that audience who will hear the...
File Upload Using Angular4/Microservice
in
Angular4,
building microservices,
Microservice
- on March 19, 2018
- No comments

Upload a file, is a regular feature of web programming, Every Business needs this facility, We know How to upload a file using JSP/Html as Front-end and Servlet/Struts/Spring MVC as Server end.
But How to achieve the same in Angular 4 /Microservice...
Change Method Call On the Fly:: CallSite
in
java,
java interview questions for experienced
- on March 12, 2018
- No comments

In my previous article, I talked about invokeDynamic, In this article, I will show you the coding how you can leverage the power of invokedynamic.
We all know that to load a class dynamically and call a method at runtime we use Java Reflection, Framework developers are often used...