在springboot中 import org.springframework.context.annotation.Configuration;怎么引入Spring依赖
时间: 2024-05-20 17:15:53 浏览: 219
详解Spring基于Annotation的依赖注入实现
可以在maven中添加spring-boot-starter-parent和spring-boot-starter-web依赖,然后在pom.xml文件中引入:<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.2.8.RELEASE</version>
</dependency>即可。
阅读全文