如何在项目中引入Spring、SpringMVC和MyBatis的依赖包
时间: 2024-06-11 15:08:49 浏览: 184
1. 在 Maven 项目中,在 pom.xml 文件中添加以下依赖:
```xml
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.3.9</version>
</dependency>
<!-- Spring MVC -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.9</version>
</dependency>
<!-- MyBatis -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.7</version>
</dependency>
```
2. 如果是非 Maven 项目,则需要手动下载对应的 jar 包,并将其添加到项目的 classpath 中。
- Spring 的 jar 包下载地址:https://repo.spring.io/release/org/springframework/
- Spring MVC 的 jar 包下载地址:https://repo.spring.io/release/org/springframework/spring-webmvc/
- MyBatis 的 jar 包下载地址:https://mvnrepository.com/artifact/org.mybatis/mybatis
3. 在项目中创建 Spring 配置文件(如 applicationContext.xml)和 MyBatis 配置文件(如 mybatis-config.xml),并在其中配置相应的组件和数据库连接信息。
4. 在 Spring MVC 的配置文件(如 servlet-context.xml)中配置 Spring MVC 的组件和视图解析器。
5. 在代码中使用 @Autowired 注解或者手动注入来使用 Spring 中的组件,使用 SqlSession 来访问数据库。
阅读全文