maven中使用@springbootapplication注解pom依赖需要添加什么''
时间: 2023-03-30 10:03:55 浏览: 196
springboot +mybatis(durid的数据库连接池)+freemarker--可能我freemaker的依赖没有加到时候自己再pom文件下加一下
您需要在pom.xml文件中添加以下依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
这个依赖包含了Spring Boot应用程序所需的所有基本依赖项,包括Spring MVC和Tomcat嵌入式容器。同时,@SpringBootApplication注解也包含了@SpringBootConfiguration、@EnableAutoConfiguration和@ComponentScan注解的功能。
阅读全文