摘要: Spring会把被注解@Controller\@Service\@Repository\@Component标注的类纳入Spring容器中进行管理。 一、基于xml实现ioc 1.AccountDaoImpl package com.itheima.dao.impl; import com.ithe 阅读全文
posted @ 2020-06-21 22:52 藤原拓海7 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 1.Bean 在 Spring 中,构成应用程序主干并由Spring IoC容器管理的对象称为bean。bean是一个由Spring IoC容器实例化、组装和管理的对象。 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www. 阅读全文
posted @ 2020-06-21 22:45 藤原拓海7 阅读(1337) 评论(0) 推荐(1) 编辑
摘要: 一、基于xml文件实现的AOP 1.AccountServiceImpl package com.itheima.service.impl; import com.itheima.service.IAccountService; /** * 账户的业务层实现类 */ public class Acc 阅读全文
posted @ 2020-06-21 19:39 藤原拓海7 阅读(116) 评论(0) 推荐(0) 编辑