摘要: SpringAop 1.https://blog.csdn.net/w449226544/article/details/103365446 2.https://www.cnblogs.com/lcngu/p/5339555.html 3.https://blog.csdn.net/u0104523 阅读全文
posted @ 2020-05-31 09:14 ScoutDu 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 介绍 要聊事务,不可避免的要提到数据库事务的四大特性:ACID atomic consistence isolation durability 先放一个表格,看看4个隔离级别会出现的各种问题,网上的解释一大堆。看完后还是一脸懵逼,感觉懂了,又好像没懂。因为没有具体的演示例子,索性自己尝试复现这几个问 阅读全文
posted @ 2020-05-12 11:11 ScoutDu 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 查看备注: --查看表的comment select * from all_tab_comments where table_name= upper(tablename) ; --查看列的comment select * from all_col_comments where table_name= 阅读全文
posted @ 2020-01-22 09:31 ScoutDu 阅读(3553) 评论(0) 推荐(0) 编辑
摘要: 1.压缩命令压缩文件xxx到xxx.zip zip xxx.zip xxx压缩文件夹xxx到xxx.zip zip -r xxx.zip xxx压缩当前目录下所有文件到xxx.zip zip -r xxx.zip ./* 2.curl发送get请求curl http://127.0.0.1:8088 阅读全文
posted @ 2019-12-20 16:07 ScoutDu 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 方式一: 方式二: 转载自:https://www.jb51.net/article/127844.htm 阅读全文
posted @ 2019-10-12 11:03 ScoutDu 阅读(35494) 评论(0) 推荐(4) 编辑
摘要: Java 最常见 200+ 面试题全解析:面试必备(转载) 序言 在本篇文章开始之前,我想先来回答一个问题:我为什么要写这样一篇关于面试的文章?原因有三个:第一,我想为每一个为梦想时刻准备着的“有心人”,尽一份自己的力量,提供一份高度精华的 Java 面试清单;第二,目前市面上的面试题不是答案不准确 阅读全文
posted @ 2019-09-28 05:27 ScoutDu 阅读(591) 评论(0) 推荐(0) 编辑
摘要: 1.找到article标签 Copy outerHtml 2.在博客园编辑页面粘贴HTML代码,声明转载即可 阅读全文
posted @ 2019-09-27 11:32 ScoutDu 阅读(125) 评论(0) 推荐(0) 编辑
摘要: Note:文章的内容基于JDK1.7进行分析。1.8做的改动文章末尾进行讲解。 一、先来熟悉一下我们常用的HashMap: 1、概述 HashMap基于Map接口实现,元素以键值对的方式存储,并且允许使用null 建和null 值, 因为key不允许重复,因此只能有一个键为null,另外HashMa 阅读全文
posted @ 2019-09-27 09:55 ScoutDu 阅读(1336) 评论(0) 推荐(0) 编辑
摘要: pom.xml generatorConfig.xml 命令 mvn mybatis-generator:generate 阅读全文
posted @ 2019-07-19 16:40 ScoutDu 阅读(399) 评论(0) 推荐(0) 编辑
摘要: 项目结构 pom.xml web.xml springmvc-servlet.xml jdbc.properties Studentmapper.xml Sutdentmapper.java index.jsp home.jsp 阅读全文
posted @ 2019-07-14 22:53 ScoutDu 阅读(134) 评论(0) 推荐(0) 编辑