上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 63 下一页
  2022年6月14日
摘要: 1、在sql语句前使用explain关键字,查看执行情况。2、正确的建立索引3、在子查询当中,尽量用exists代替in:select a.id from tbl_glw_customer_order_transport a where exists(select 1 from tbl_glw_cu 阅读全文
posted @ 2022-06-14 14:08 邢帅杰 阅读(85) 评论(0) 推荐(0)
  2022年6月10日
摘要: FOR XML PATH(''):将查询结果集以XML形式展现。1、select top 1 opr_id,user_id from dbo.tracking_log FOR XML PATH('oprs')返回结果xml: <oprs> <opr_id>100</opr_id> <user_id> 阅读全文
posted @ 2022-06-10 15:06 邢帅杰 阅读(267) 评论(0) 推荐(0)
  2022年3月29日
摘要: 旧了,最新版本的看这个文章吧:https://www.cnblogs.com/xsj1989/p/18338930官网:https://sentinelguard.io/zh-cn/index.html注解支持:https://github.com/alibaba/Sentinel/wiki/%E6 阅读全文
posted @ 2022-03-29 16:42 邢帅杰 阅读(2105) 评论(0) 推荐(0)
  2022年3月15日
摘要: 官网:https://nacos.io/zh-cn/1、下载:https://github.com/alibaba/nacos/releases/tag/1.4.3,windows版的是:nacos-server-1.4.3.zip,官网下载慢,网盘下载链接:https://pan.baidu.co 阅读全文
posted @ 2022-03-15 10:52 邢帅杰 阅读(2020) 评论(0) 推荐(0)
  2022年3月14日
摘要: 一、idea配置显示Run Dashboard在项目的根目录找 .idea文件夹,找到workspace.xml打开找到<component name="RunDashboard"> 在这个节点下增加配置 <option name="configurationTypes"> <set> <optio 阅读全文
posted @ 2022-03-14 15:22 邢帅杰 阅读(101) 评论(0) 推荐(0)
  2021年12月20日
摘要: 引入pom <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>or 阅读全文
posted @ 2021-12-20 16:10 邢帅杰 阅读(205) 评论(0) 推荐(0)
  2021年11月30日
摘要: 这个已经很陈旧了,废弃,新办法:https://www.cnblogs.com/xsj1989/p/18295485来源:http://www.demodashi.com/demo/14622.html1、引入dynamic-datasource-spring-boot-starter和mybati 阅读全文
posted @ 2021-11-30 11:46 邢帅杰 阅读(920) 评论(0) 推荐(0)
  2021年10月28日
摘要: 元注解@Target 表示注解可以用于哪些地方,CONSTRUCTOR:构造器,FIELD:字段(包括 enum 实例),LOCAL_VARIABLE:变量,METHOD:方法,PACKAGE:包,PARAMETER:参数,TYPE:类、接口(包括注解类型)或者 enum。@Retention 表示 阅读全文
posted @ 2021-10-28 15:05 邢帅杰 阅读(263) 评论(0) 推荐(0)
  2021年10月26日
摘要: 概述1 . 不是数据结构,不会保存数据。2. 不会修改原来的数据源,它会将操作后的数据保存到另外一个对象中。(保留意见:毕竟peek方法可以修改流中元素)3. 惰性求值,流在中间处理过程中,只是对操作进行了记录,并不会立即执行,需要等到执行终止操作的时候才会进行实际的计算。分类中间操作:无状态:un 阅读全文
posted @ 2021-10-26 13:43 邢帅杰 阅读(424) 评论(0) 推荐(0)
  2021年10月25日
摘要: 参考:https://blog.csdn.net/wangmaohong0717/article/details/80900929request.getParameterMap()返回的是一个只读的Map<String,String[]>类型的值,存放的是参数key-values。为什么是Strin 阅读全文
posted @ 2021-10-25 17:44 邢帅杰 阅读(233) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 63 下一页