When i run my first spring boot project. Tomcat does not run
This is my pom.xml
4.0.0
org.springframework.boot
spring-boot-starter-parent
3.3.1com.bach
hello-spring-boot
0.0.1-SNAPSHOT
hello-spring-boot
First simple project with spring-boot<java.version>21</java.version>
org.springframework.boot
spring-boot-starter-web
test<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </dependency>
org.springframework.boot
spring-boot-maven-plugin
I added spring-boot-starter-web into dependencies but when i run i didn’t receive any messages about tomcat server
1