Spring Boot- How to change default context path

In Spring Boot, you can change the default context path by modifying the application.properties or application.yml file. By default '/'(root) […]

Continue reading...

Capitalize the first letter of each word in a String using Java

On this page, we will learn how to capitalize the first letter of each word in a String using Java. […] Continue reading »

Java – Capitalize the first letter of a String

In this short tutorial, you will get an idea of how to capitalize the first letter of a string. In […] Continue reading »

Spring Boot- Disable Spring banner at startup

In your Spring Boot application, you can disable the Spring logo banner at the startup of the application. It can […] Continue reading »

How to convert the first letter of a String to lowercase in PHP

In PHP, lcfirst(string $string) is the inbuilt function to convert the first letter of a String to lowercase. And lcfirst(string […] Continue reading »

How to capitalize the first letter of a String in PHP

In PHP, we can use the inbuild ucfirst(string $string) function to convert the first character of a string to uppercase. ucfirst(string […] Continue reading »

How to install Apache 2.4 and PHP 8 on a Windows Machine

In this tutorial, you will learn how to install and configure Apache 2.4 and PHP 8 on a Windows machine. […] Continue reading »

IntelliJ IDEA- Import/Open multiple project in single Window

IntelliJ IDEA does not support to open the multiple project in same working window directly. But it can be possible […] Continue reading »

How to change default banner text in Spring Boot

In this tutorial, you will learn how to change the default Spring Boot banner text with your own custom banner […] Continue reading »

Java 9- Creating Collection using Factory Method of(…)

Java 9 introduced static factory method of(...) to create the unmodifiable collection instance for the List, Set, and Map. It […] Continue reading »

Eclipse/STS shortcut keys for Uppercase and Lowercase

Getting familiar with shortcut keys improve the productivity and Eclipse/STS these shortcut keys help you for changing the case(uppercase and […] Continue reading »

How to import Spring Boot project in Eclipse/STS IDE

On this page you’ll find step by step guide to import a existing Spring Boot project in your Eclipse/STS IDE. […] Continue reading »

1 11 12 13 14 15 44