Posts

Showing posts from April, 2017

Notes about RESTful Service

We already discussed about the RESTful service compare with SOAP Service and etc. Here will point out the important notes about the RESTful Services . Hope it will useful while preparing the interview When we exposing any Service /API followings are mandatory 1) Accessibility ie How to access the Service 2) Request and Response 3) How to handle the exception 4) Versioning 5) Security 6) Performance REST is nothing but Representation State Transfer and its architecture style and RESTful is a mainly for exposing the Webservices access through HTTP. RESTful does not maintains any state between the Server and Client , Its stateless service . Stateless service always create the new request whenever client communicate with Server. Always independent Request between Client and Server RESTful service transports through HTTP Protocol ofcourse its supports HTTPS also. RESTful service transfer the different data format ie its supports XML/JSON and etc. In En...

How to Migrate Monolith to Micro Service Architecture

Coming Soon ...............

Interview Preparation -

Assume that you have 10 + Years Experience in IT. If you are looking for change now (Technical Context) then you need to prepare the interview in the followings You should understand and clear picture about your current project in terms of Business and Technical ..Its mandatory for all the Interviews . Interviewer should start from your current project only except very few cases they directly jump into Technical spectrum . Even if they directly jump into Technical still you can answer those questions which maps to your project. Most of the cases they are not expecting 100% correct answer from you instead they are expecting how you maps/implement those in your projects. Let me given example , [Questions ] What is use of Spring Batch ? [Ans]: First Step Usage of Spring Batch Spring Batch is mainly used of Bulk Processing . Its a open source framework under the Spring Umbrella. Second Step How to maps in your project In our project al...