Skip to main content

Posts

Showing posts from December, 2021

IE 11 support No longer available in Angular 13

If your application was supporting IE13, then upgrading to Angular 13 might not be a good choice for you. Officially Angular has removed support for IE 111 You can find more details here Angular – Update Angular . The worldwide usage of Internet Explorer 11 (IE11) has been steadily declining for years, and is currently at  0.73% according to StatCounter  and  1.70% according to NetMarketShare , meaning that a very small fraction of the overall world population uses this browser H ow do we benefit by removal of the support ? Application users the apps will be smaller and load faster thanks to the removal of IE11-specific code the use of modern Web APIs will result in further UX improvements Application authors and stakeholders will benefit from improved APIs and build infrastructure will reduce the risks and liabilities due to known security issues and limitations of IE11 can lean on our decision as an argument when talking to application stakeholders about IE11 support (if they s...

Here is how to enable actuation in spring boot

What are actuators : Actuators are features or endpoints which helps us to monitor the spring boot application. Configure Actuator in Spring boot : Step 1 : Add the below entry to pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> Step 2 : Update the Project Step 3 : Restart Spring boot application and you are set Step 4 : Test the actuator

Here is how to Run MockMvc in Spring boot

After you create your Spring boot project and when you write your first MockMvc test cases, you may land into the below error if the packages are not of same level. j ava.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=…) with your test at org.springframework.util.Assert.state(Assert.java:76) Solution: Spring MVC boot application and the Test code should be in same package level Below – Main application DemoApplication.java and HelloControllerTest.java should be in same package structure com.rajesh.demo Let me know if you still face issues.

Here is how to Increase font size in eclipse

Hey there, Looking for shortcut to increase / decrease font size in eclipse. Increase font size – Hit Ctrl + Shift + Plus key Decrease font size – Hit Ctrl + Shift + Minus key So simple as that !!!!