Spring stereotype's are annotations that denote the roles of types or methods in the overall architecture at a conceptual rather than implementation level according to the Spring Docs.
Handling Inconsistent Json Data using Jackson
You might find that you need to unmarshall a json data into a domain object but the json data structure is not consistent. In cases such as this, the unmarshalling process will fail. Jackson allows you to write your own custom Json Deserializer to resolve this issue. If we have the following Json data as… Continue reading Handling Inconsistent Json Data using Jackson
PHP and Micro-services
Most PHP based applications are large and self contained, i.e they are built in a monolithic style. As an example a typical food take-out website built using PHP will typically contain an order module, payment module, contact module e.t.c.., the problem with this sort of approach is that if for example the order module requires… Continue reading PHP and Micro-services


