摘要: 注解配置业务类 使用@Component("s") 注解ProductService 类 package com.how2java.service; import org.springframework.stereotype.Component; @Component("s") public cla 阅读全文
posted @ 2019-11-07 15:33 大盘鸡嘹咋咧 阅读(206) 评论(0) 推荐(0) 编辑
摘要: AOP 即 Aspect Oriented Program 面向切面编程 首先,在面向切面编程的思想里面,把功能分为核心业务功能,和周边功能。 所谓的核心业务,比如登陆,增加数据,删除数据都叫核心业务 所谓的周边功能,比如性能统计,日志,事务管理等等 周边功能在Spring的面向切面编程AOP思想里 阅读全文
posted @ 2019-11-07 00:19 大盘鸡嘹咋咧 阅读(240) 评论(0) 推荐(0) 编辑