)代码演示如何使用注解的方式装配Bean。 要求 (1)创建项目名称为chapter07 (2)创建配置文件名称为applicationContext.xml; (3)创建包名为 com.itheima.XXXcontroller层、service层、dao层要分别创建3个包;
时间: 2024-02-20 12:56:35 浏览: 84
Spring如何使用注解的方式创建bean
好的,下面是代码演示:
1. 创建项目 chapter07,并在 src/main/java 下创建 com.itheima 包。
2. 在 com.itheima 包下创建 applicationContext.xml 配置文件,内容如下:
```xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- 扫描 com.itheima 包下的所有组件 -->
<context:component-scan base-package="com.itheima"/>
<!-- 配置数据源 -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/test"/>
<property name="username" value="root"/>
<property name="password" value=""/>
</bean>
<!-- 配置 MyBatis 的 SqlSessionFactory -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="mapperLocations" value="classpath:mapper/*.xml"/>
</bean>
<!-- 配置 MyBatis 的 MapperScannerConfigurer -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.itheima.dao"/>
</bean>
<!-- 配置事务管理器 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!-- 开启事务注解 -->
<tx:annotation-driven transaction-manager="transactionManager"/>
</beans>
```
3. 创建 controller、service、dao 三个包,分别在这三个包下创建对应的组件,如下所示:
```java
package com.itheima.controller;
import org.springframework.stereotype.Controller;
@Controller
public class UserController {
// ...
}
```
```java
package com.itheima.service;
import org.springframework.stereotype.Service;
@Service
public class UserService {
// ...
}
```
```java
package com.itheima.dao;
import org.springframework.stereotype.Repository;
@Repository
public class UserDao {
// ...
}
```
4. 在 web.xml 中配置 Spring MVC 的 DispatcherServlet 和 ContextLoaderListener,如下所示:
```xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
<!-- 配置 Spring MVC 的 DispatcherServlet -->
<servlet>
<servlet-name>dispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<!-- 配置 Spring 的 ContextLoaderListener -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
</web-app>
```
5. 至此,我们就完成了使用注解的方式装配 Bean 的演示。在编写代码时,需要注意以下几点:
- 在 applicationContext.xml 中需要开启组件扫描功能,扫描指定的包。
- 在 controller、service、dao 组件中需要使用 @Controller、@Service、@Repository 注解进行标记。
- 在 web.xml 中需要配置 DispatcherServlet 和 ContextLoaderListener。
- 在编写业务代码时,需要使用 @Autowired 或者 @Resource 注解来自动装配所需的组件。
阅读全文