Spring05:使用注解开发

Posted 小布丁value

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring05:使用注解开发相关的知识,希望对你有一定的参考价值。

Spring05:使用注解开发


导一个这个包就都有了

在配置文件当中,还得要引入一个context约束

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        https://www.springframework.org/schema/context/spring-context.xsd">

    <context:annotation-config/>

</beans>

Bean的实现

我们之前都是使用 bean 的标签进行bean注入,但是实际开发中,我们一般都会使用注解!

1、配置扫描哪些包下的注解

<!--指定注解扫描包-->
<context:component-scan base-package="com.kuang.pojo"/>




@Component三个衍生注解



以上是关于Spring05:使用注解开发的主要内容,如果未能解决你的问题,请参考以下文章

Spring05:使用注解开发

spring 05——使用注解开发

这些简单的Spring Bean注入方式,你都会吗?

Spring05 注解开发

spring之@Profile注解

自定义SpringBoot Starter 通过注解启动装配