Posts

Showing posts from November, 2022
  Micro-Service Interview Questions   1.        What is a micro-service? 2.        What is cohesion? 3.        What is coupling? 4.        Benefits and drawbacks of Monolithic services? 5.        What are alternative for Monolithic services? 6.        Explain Microservice architecture? 7.        In a micro-service nutshell -What are components? 8.        What are the advantages and disadvantages of Micro-services? 9.        What are different ways of Microservice communication? 10.    What are different design patterns evolving around microservices? a.        Circuit-break pattern b.        saga-pattern c. ...

GIT Commands

git clone <repository-name> git status git add * git commit -m "commit-message" git push origin <branch-name> git reset --<commit-Id>  soft/mixed/hard git config --global user.name  "username" git config --global user.email "shaikjee***@gmail.com" git config --global  http.sslverify  false

Maven Commands

1. mvn -version 2. mvn clean 3. mvn clean install 4. mvn clean install -DskipTests=true 5. mvn -Dmaven.test.skip=true  clean install 6. mvn dependency:tree 7. mvn dependency:tree -Dincludes=<artificate-Name> 8. mvn deploy