Spring boot

Spring Boot Password Encoder Match Error

Spring Boot Password Encoder Match Error When working with Spring Boot applications, it’s not uncommon to encounter various errors, and one that can be particularly puzzling is the “Password Encoder Match not working” error. This error often manifests when trying to verify a user’s password against a stored, encoded password. In this article, we’ll delve […]

How to configure port for a Spring Boot application

To configure the TCP/IP port used by a Spring Boot application, you can specify the server.port property in the application.properties file or the application.yml file. Here’s how to set the port to 9000 using the application.properties file: 1. Create a file named application.properties in the src/main/resources directory of your project. 2. Add the following line […]

Create spring boot application in IntelliJ idea

Create spring boot application First, you need to IntelliJ IDEA for development then click and download IntelliJ IDEA. 1. Click create new project button: 2.  Create the Maven project: 3. Enter your project name: 4. Add the following dependency in the pom.xml file: <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>2.5.1</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.3.4.RELEASE</version> </dependency> </dependencies> 5. POM.xml file: <?xml version=”1.0″ […]

How To Create A Spring-Boot Project in IntelliJ IDEA

How To Create A Spring-Boot Project in IntelliJ IDEA 2. Create Maven project. 3. Enter your project name 4. Add following dependency in pom.xml file –> pom.xml 5. Create one main class Application.java-> 6. Create one testing Controller class HelloController.java- 7. Now Run your application.java application- First right click in your application class and then […]

Scroll to top