摘要: 编程事务控制相关对象 PlatfromTransactionManager PlatfromTransactionManager时spring接口是spring的事务管理器,提高具体事务操作方法 方法 说明 TransactionStatus.getTransation(TransactionDef 阅读全文
posted @ 2022-04-10 20:07 YL_Hello 阅读(26) 评论(0) 推荐(0) 编辑
摘要: AOP简介 Target(目标对象):代理的目标对象 Proxy(代理):一个类被AOP织入增强后,就产生一个结果代理类 Joinpoint(连接点):指被拦截到的点。在spring中指方法,spring只支持方法类型连接点 Pointcut(切入点):切入点指要对哪些连接点进行拦截的定义 Advi 阅读全文
posted @ 2022-04-10 16:45 YL_Hello 阅读(32) 评论(0) 推荐(0) 编辑
摘要: Spring JdbcTemplate基本使用 JdbcTemplate开发步骤 导入spring-jdbc和spring-tx坐标 <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifa 阅读全文
posted @ 2022-04-07 15:27 YL_Hello 阅读(21) 评论(0) 推荐(0) 编辑
摘要: SpringMVC快速入门 入门代码实现 导入SpringMVC坐标 <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>5.3.17</version> < 阅读全文
posted @ 2022-04-07 13:35 YL_Hello 阅读(17) 评论(0) 推荐(0) 编辑
摘要: Spring相关API ApplicationContext的实现类 ClassPathXmlApplicationContext 从类的根目录下加载配置文件,推荐使用 FileSystemXmlApplicationContext 从磁盘路径上加载配置文件,配置文件可以在磁盘的任意位置 Annot 阅读全文
posted @ 2022-04-05 22:43 YL_Hello 阅读(21) 评论(0) 推荐(0) 编辑
摘要: Spring入门 1.导入坐标(pom.xml) <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.3.15</version> </depen 阅读全文
posted @ 2022-04-04 18:41 YL_Hello 阅读(24) 评论(0) 推荐(0) 编辑
摘要: Servlet基础 Servle创建 //第一种,不管提交方式 @WebServlet("/s01")//注解,/s01为目录 public class Servlet01 extends HttpServlet{//继承 @Override//方法重写注解 protected void servi 阅读全文
posted @ 2022-04-03 16:01 YL_Hello 阅读(21) 评论(0) 推荐(0) 编辑
摘要: jQuery事件 事件注册 //单个事件注册 $("div").click(function(){}); //on()方法绑定一个或多个事件的事件处理函数 //element.on(events,selector,fn); $("div").on(mouseenter:function(){},mo 阅读全文
posted @ 2022-03-28 14:49 YL_Hello 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 常见的JavaScript库 jQuery、Prototype、YUI、Dojo、Ext JS、移动端的zepto jQuery基本使用 入口函数 //页面DOM加载完成在执行js方式一 $(decoument).ready(function(){ }) //页面DOM加载完成在执行js方式二 $( 阅读全文
posted @ 2022-03-26 19:57 YL_Hello 阅读(44) 评论(0) 推荐(0) 编辑
摘要: BOM概述 BOM即浏览器对象模型,独立于内容与浏览器窗口进行交互的对象,核心对象是window;缺乏标准,浏览器厂商在各自浏览器上定义,兼容性较差。 页面加载事件 window.onload = function(){} //文档内容完全加载完成触发该事件(包括图像、脚本文件、CSS文件等),就调 阅读全文
posted @ 2022-03-26 09:58 YL_Hello 阅读(25) 评论(0) 推荐(0) 编辑