<?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:component-scan base-package="edu.cqupt"/> <context:annotation-config/> </beans>
@Component: 组件,放在类上,说明这个类被Spring管理了,就是bean!
等价于: <bean id="user" class="edu.cqupt.pojo.User"/>
@Value("shi-lin")
等价于:<
property
name
="name"
value
="shi-lin"
/>
原文:https://www.cnblogs.com/yuanlianyao/p/14697465.html