Java
Java – A Programming language
-
Prettier code installation setup on the visual studio.
Installation Configuration You have several ways to configure Prettier: Formatting Important Notes: Let me know if you’d like specific examples… Read More
-
Internationalization (i18n) vs Localization (l10n)
Localization Localization is the adaptability of a application to meet the language, cultural and other requirements. Localization involves, Names and titles.… Read More
-
Install Open JDK 1.8 on Amazon EC2
Execute below commands: sudo yum update #yum update will update every currently installed package sudo yum install java-1.8.0 # install openjdk… Read More
-
How to disable same page routing on url change in angular 4/5/6 ?
Steps: 1. Disable same page redirection this._router.onSameUrlNavigation=”ignore”; 2. Change param for the requested page. this._router.navigateByUrl(this._router.url+”;step-no=”+ (step+1)) Read More
-
[Solved]: Cookie is not able to Set / Access with Anguar Http Calls
In angular, Cookie access will not be able to given directly hence it fails to write info. Solution is using… Read More
-
Logic to apply left rotation for given array.
Example: Assume array is [ 1, 2, 3, 4, 5 ] Do 1 – Left rotation ie, First Element should… Read More
-
lombok: Fatal error compiling: java.lang.ExceptionInInitializerError: com.sun.tools.javac.code.TypeTags
Fatal error compiling: java.lang.ExceptionInInitializerError: com.sun.tools.javac.code.TypeTags This problem raises when you use lombok in Java 10 environment. Change the default or… Read More
-
Callable and Runnable in Java
Callable & Runnable used for achieving concurrency in the programming thread. Java introduced Callable from Java 1.5 in java.util, and… Read More
-
How to copy environment specific files effectively in gradle ?
Copy task into build.gradle: The task: myCopy searches src/main/resources and replace all the files under it with the value passed for the… Read More

