Skip to main content

Posts

Showing posts from January, 2019

How to take Full Page Screenshot using Google Developer Tools in Chrome Browser

Click on 3 vertical dots on the top right hand side of the browser. Click on 3 vertical dots again in the Developer Tools Menu and choose "Run Command" option or use keyboard combination ctrl+Shift+P. If you do not see Developer Tools you might have to go to chrome settings and enable this option in your chrome browser. Now type "Capture Full Page Screenshot" in the command bar. Thats it. You should now see the whole page you are viewing will be downloaded automatically in your PC as a PNG file.

Springboot Microservices Tools And Dependencies – Spring Cloud Config

There are various tools and dependencies which are available in Spring Starter project which are very useful in creating better spring based microservice architectures for developing mobile or web applications. Here is one such commonly used tools if you are using the springboot microservice architecture in designing your applications. Spring Cloud Config Server : This dependency is used for externalizing the configuration properties in various microservices present in your organization. The main advantage of using Spring Cloud Config Server is that you can get away from deploying or restarting your services if there is only configuration change made in your microservice. Generally, if you change any property in your microservice, you will have to restart the microservice to see that change. But if you configure your properties in the Spring Cloud Config Server, the changes will be affected automatically in the applications. Steps to activate this dependency: ·   ...