常见的注解
Spring中常见的注解
1、@Configuration 标识当前类是配置类 2、@ComponentScan 包扫描注解 扫描注解 3、@Bean 标识该方法的返回值交给Spring容器管理 4、@Scope 控制多例和单例 5、@Lazy 懒加载 6、@PostConstruct 初始化方法 7、@PreDestroy 销毁方法 8、@Component 将当前类未来的对象交给容器管理 9、@Autowired 按照类型进行注入 10、@Qualifier 按照名称进行注入 11、@Repository 标识持久层注解 12、@Service 标识Service层 13、@Controller 标识Controller层 14、@Value 为属性赋值 @Value("${key}") 15、@PropertySource 加载指定路径的配置文件properties 16、@Aspect 标识当前类是一个切面类 17、@Pointcut 用于定义切入点表达式 表达式写法4种 18、@EnableAspectJAutoProxy
常见的注解最先出现在Python成神之路。
共有 0 条评论