随笔分类 - Spirng知识点
在spring 学习过程中总结一些重要的知识点,非项目实战经验。
摘要:
Spring 注解配置bean 复习注解相关的知识 啥是注解? 直接是一种特殊的标识符。可在源码或运行阶段起作用。 注解类型 元注解 如 **@Target** 自定义注解 Spring 中注解配置bean 先介绍在Spring 中几个常见的注解 @Component @Repository @Se
阅读全文

摘要:
Spring 后置处理器【1】 简单介绍 一句话:bean 在初始化前或初始化后的瞬间,我自己添加一些业务逻辑 bean 后置处理器类的内容 简单代码 package com.hspedu.spring.bean; import org.springframework.beans.BeansExce
阅读全文
