上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 117 下一页
  2021年11月17日
摘要: 一、SpringMVC 输出模型数据概述 JavaWEB 中的响应数据常用的操作有: (1)在域对象中存取数据 如:request.setAttribute(),request.getAttribute(),request.removeAttribute() (2)请求转发:request.getR 阅读全文
posted @ 2021-11-17 12:50 格物致知_Tony 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 1111 阅读全文
posted @ 2021-11-17 12:42 格物致知_Tony 阅读(12) 评论(0) 推荐(0) 编辑
  2021年11月16日
摘要: 一、ApplicationListener 接口 ApplicationListener:监听容器中发布的事件。事件驱动模型开发; public interface ApplicationListener<E extends ApplicationEvent> 监听 ApplicationEvent 阅读全文
posted @ 2021-11-16 21:42 格物致知_Tony 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 一、BeanDefinitionRegistryPostProcessor 接口 BeanDefinitionRegistryPostProcessor 继承结构: BeanDefinitionRegistryPostProcessor extends BeanFactoryPostProcesso 阅读全文
posted @ 2021-11-16 13:01 格物致知_Tony 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 一、BeanFactoryPostProcessor 接口 BeanFactoryPostProcessor:BeanFactory 的后置处理器 作用: 在 BeanFactory 标准初始化之后调用,来定制和修改 BeanFactory 的内容; 所有的 bean 定义信息已经保存加载到 bea 阅读全文
posted @ 2021-11-16 10:46 格物致知_Tony 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 事务原理: 原理: 1)、@EnableTransactionManagement 注解 利用 TransactionManagementConfigurationSelector 给容器中会导入组件 导入两个组件: AutoProxyRegistrar ProxyTransactionManage 阅读全文
posted @ 2021-11-16 10:38 格物致知_Tony 阅读(40) 评论(0) 推荐(0) 编辑
  2021年11月15日
摘要: 一、声明式事务环境搭建 1、导入依赖 导入相关依赖:数据源、数据库驱动、spring-jdbc 模块 <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>$ 阅读全文
posted @ 2021-11-15 22:59 格物致知_Tony 阅读(52) 评论(0) 推荐(0) 编辑
摘要: AOP 原理 AOP 原理:【看给容器中注册了什么组件,这个组件什么时候工作,这个组件的功能是什么?】 @EnableAspectJAutoProxy 原理: 1、@EnableAspectJAutoProxy 是什么? @Import(AspectJAutoProxyRegistrar.class 阅读全文
posted @ 2021-11-15 21:14 格物致知_Tony 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 一、AOP AOP:【动态代理】 指在程序运行期间动态的将某段代码切入到指定方法指定位置进行运行的编程方式。 二、AOP 应用 导入 AOP 模块,Spring AOP:(spring-aspects) 定义一个业务逻辑类,在业务逻辑运行的时候将日志进行打印,在方法之前、方法运行结束、方法异常都有打 阅读全文
posted @ 2021-11-15 21:08 格物致知_Tony 阅读(112) 评论(0) 推荐(0) 编辑
  2021年11月14日
摘要: 一、@Profile Spring 为我们提供的可以根据当前环境,动态的激活和切换一系列 组件的 功能。 例如:开发环境、测试环境、生产环境 不同的环境连接到不同的数据源:(/A)(/B)(/C) 以测试数据源为例: (1)编写配置文件 db.properties db.user=root db.p 阅读全文
posted @ 2021-11-14 22:33 格物致知_Tony 阅读(72) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 117 下一页