上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 58 下一页
  2022年6月23日
摘要: 参考:https://www.cnblogs.com/atomy/p/12784361.htmlDapper存储过程:http://t.zoukankan.com/mengshi-p-4784640.html using Dapper; using System.Collections.Generi 阅读全文
posted @ 2022-06-23 13:22 邢帅杰 阅读(58) 评论(0) 推荐(0) 编辑
  2022年6月15日
摘要: ASP.NET Core gRPC(Google Remote Procedure Call)介绍:https://zhuanlan.zhihu.com/p/411315625参考:http://t.zoukankan.com/lhwpc-p-15157339.html文档:http://doc.o 阅读全文
posted @ 2022-06-15 16:25 邢帅杰 阅读(131) 评论(0) 推荐(0) 编辑
  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 邢帅杰 阅读(75) 评论(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 邢帅杰 阅读(221) 评论(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 邢帅杰 阅读(1660) 评论(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 邢帅杰 阅读(1543) 评论(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 邢帅杰 阅读(83) 评论(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 邢帅杰 阅读(95) 评论(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 邢帅杰 阅读(740) 评论(0) 推荐(0) 编辑
  2021年10月28日
摘要: 元注解@Target 表示注解可以用于哪些地方,CONSTRUCTOR:构造器,FIELD:字段(包括 enum 实例),LOCAL_VARIABLE:变量,METHOD:方法,PACKAGE:包,PARAMETER:参数,TYPE:类、接口(包括注解类型)或者 enum。@Retention 表示 阅读全文
posted @ 2021-10-28 15:05 邢帅杰 阅读(248) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 58 下一页