# spring-fei-study **Repository Path**: giteefeisir/spring-fei-study ## Basic Information - **Project Name**: spring-fei-study - **Description**: 学习 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-21 - **Last Updated**: 2024-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ###Spring ```java @Value("张飞") public String name;//值注解 //等价于 ``` 衍生的注解 @Component,@Repository,@Service,@Controller 这四个注解功能一样,证明这个类被注入到sprin容器中 xml和注解比较; xml更加万能,适用于任何方面,维护简单方便 注解:不是自己的类是用不了,维护相对复杂 ##spring07 @configuration,这个spring容器会托管,注册到容器中,因为他本身就是@Component #AOP 1.代理模式【SpringAOP和SpringMVC】