上一页 1 2 3 4 5 6 7 8 9 ··· 75 下一页
摘要: http://www.zhano.cn/index.php/Java/40878.html Spring propagation7种事务配置 1、简述 在声明式的事务处理中,要配置一个切面,其中就用到了propagation,表示打算对这些方法怎么使用事务,是用还是不用,其中propagation有 阅读全文
posted @ 2023-07-24 14:00 kelelipeng 阅读(1436) 评论(0) 推荐(0)
摘要: 方法1: https://blog.csdn.net/qq_37778018/article/details/125326847 在做一个跨过目标注解的鉴权功能时,想到了AOP与拦截器两种方式,其中 @HasPermission 是我自定义的注解,以下分别为AOP与拦截器获取访问目标类与方法上的注解 阅读全文
posted @ 2023-07-24 11:53 kelelipeng 阅读(4896) 评论(0) 推荐(1)
摘要: https://blog.csdn.net/feyehong/article/details/123676293 前端 $(function() { fetch('项目路径' + '/requestHeaderTest/init4', { method: 'GET', // 请求头 headers: 阅读全文
posted @ 2023-07-18 11:37 kelelipeng 阅读(532) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/fengqing5578/article/details/127316742 1.引入依赖。在pom.xml 文件 <dependencies></ dependencies> 添加如下内容 <dependency> <groupId>org.spring 阅读全文
posted @ 2023-07-11 17:46 kelelipeng 阅读(268) 评论(0) 推荐(0)
摘要: 参考: https://www.lmlphp.com/user/154182/article/item/3684631/ <html> <head> <script src="http://code.jquery.com/jquery-1.4.2.min.js"></script> <script 阅读全文
posted @ 2023-07-07 10:30 kelelipeng 阅读(2444) 评论(0) 推荐(0)
摘要: 来源: https://blog.csdn.net/qq_36025814/article/details/108023035 ***理论参考:(必读) 从前后端的角度分析options预检请求——打破前后端联调的理解障碍 https://cloud.tencent.com/developer/ar 阅读全文
posted @ 2023-06-25 18:15 kelelipeng 阅读(204) 评论(0) 推荐(0)
摘要: Druid passwordcallback失效 springboot利用druid连接池做数据库密码加密 引入依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</ artifactId> <version>1.1.21 阅读全文
posted @ 2023-06-21 11:28 kelelipeng 阅读(419) 评论(0) 推荐(0)
摘要: 一、说明public List<E> subList(int fromIndex, int toIndex){...}作用:返回包含从索引 fromIndex(包括)到索引toIndex(不包括)元素的List集合。 二、测试下面是关于subList的一些测试。 首先,创建一个ArrayList对象 阅读全文
posted @ 2023-06-12 17:18 kelelipeng 阅读(1135) 评论(0) 推荐(1)
摘要: Java对象深拷贝详解(List深拷贝) https://blog.csdn.net/weixin_42675423/article/details/128260074 阅读全文
posted @ 2023-05-30 17:56 kelelipeng 阅读(383) 评论(0) 推荐(0)
摘要: CopyOnWriteArrayList与CopyOnWriteArraySet详解 什么是CopyOnWrite容器 【1】CopyOnWrite容器是基于并发模式Copy-on-Write模式(最简单的并发解决方案)实现的用于避免共享的数据集合。 【2】CopyOnWrite容器又被成为写时复制 阅读全文
posted @ 2023-05-22 17:05 kelelipeng 阅读(393) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 75 下一页