上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 81 下一页
摘要: 1.工厂模式,这个很明显,在各种BeanFactory以及ApplicationContext创建中都用到了;2.模版模式,这个也很明显,在各种BeanFactory以及ApplicationContext实现中也都用到了;3.代理模式,在Aop实现中用到了JDK的动态代理;4.策略模式,第一个地方 阅读全文
posted @ 2021-03-11 10:19 路要一步一步走 阅读(373) 评论(0) 推荐(0) 编辑
摘要: Java NIO非堵塞应用通常适用用在I/O读写等方面,我们知道,系统运行的性能瓶颈通常在I/O读写,包括对端口和文件的操作上,过去,在打开一个I/O通道后,read()将一直等待在端口一边读取字节内容,如果没有内容进来,read()也是傻傻的等,这会影响我们程序继续做其他事情,那么改进做法就是开设 阅读全文
posted @ 2021-03-11 10:11 路要一步一步走 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/singwhatiwanna/article/details/104568025?utm_medium=distribute.pc_relevant.none-task-blog-baidujs_title-0&spm=1001.2101.3001. 阅读全文
posted @ 2021-03-11 09:51 路要一步一步走 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 转载:https://www.dazhuanlan.com/2019/11/30/5de14b06398b8/ 阅读全文
posted @ 2021-03-10 12:18 路要一步一步走 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 集成方法请看上面的文档,集成后,可以继续阅读本页文档。 1. 继承通用的Mapper<T>,必须指定泛型<T> 例如下面的例子: public interface UserInfoMapper extends Mapper<UserInfo> { //其他必须手写的接口... } 一旦继承了Mapp 阅读全文
posted @ 2021-03-10 10:49 路要一步一步走 阅读(3690) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/coding1994/article/details/79597057 阅读全文
posted @ 2021-03-10 10:47 路要一步一步走 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/zhaizu/article/details/52573866 阅读全文
posted @ 2021-03-09 18:19 路要一步一步走 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 转载:https://www.jianshu.com/p/b4522c9212fb 阅读全文
posted @ 2021-03-09 09:54 路要一步一步走 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/miranaibuai/article/details/107437326 阅读全文
posted @ 2021-03-09 09:22 路要一步一步走 阅读(499) 评论(0) 推荐(0) 编辑
摘要: 转载:1. count(1) and count(*) 当表的数据量大些时,对表作分析之后,使用count(1)还要比使用count(*)用时多了! 从执行计划来看,count(1)和count(*)的效果是一样的。 但是在表做过分析之后,count(1)会比count(*)的用时少些(1w以内数据 阅读全文
posted @ 2021-03-09 09:12 路要一步一步走 阅读(399) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 81 下一页