Bean管理 注解方式(创建对象)
1、 注解格式 @(属性名称=属性值,属性名称=属性值)
2、 注解可以作用在类上,方法上,属性上
3、 使用注解的目的:简化xml配置
Spring 针对bean管理中创建对象提供注解
1、@Component
2、@Service
3、@Controller
4、@Repository
上面的四个注解功能是一样的,都可以用来创建bean实例
(1)引入依赖Spring-aop-5.2.6.RELEASE.jar
(2)开启组件扫描
<!--1、多个包中间用逗号隔开
2、扫描包的上层目录
-->
<context:component-scan base-package="com.mjc.spring5"></context:component-scan>
细节补充:
<!--
use-default-filters="false 表示现在部使用默认的filter,自己配置filter
context:include-filter 扫描哪些内容 这里是扫描带Controller标签的内容
-->
<context:component-scan base-package="com.mjc.spring5" use-default-filters=&