0
Hello, I am creating an application with Spring Boot Applicatio followed this tutorial: https://medium.com/@omeryazir/create-a-spring-boot-application-postgresql-spring-security-499488c30beb I followed the steps given coming up to the part of creating the class example, when I top the application this error occurs:
2020-10-10 11:54:47.827 INFO 8904 --- [ main] w.backtospring.BacktospringApplication : No active profile set, falling back to default profiles: default
2020-10-10 11:54:48.484 INFO 8904 --- [ main] w.backtospring.BacktospringApplication : Started BacktospringApplication in 1.065 seconds (JVM running for 1.508)
Process finished with exit code 0
My dependencies are like this:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.2.9.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>