前言 两年时间使用了三款ADC:AD9653,AD9266,AD3442,在此记录下坑及使用经验。 参考文档 xapp524-serial-lvds-adc-interface.pdf 所需用到的原语:IDDR、ISERDESE2等 1.AD9653:ADI公司的采样率高达125M,16bit AD ...
分类:
其他好文 时间:
2020-07-08 15:28:52
阅读次数:
179
API概述 API(Application Programming Interface),应用程序编程接口。Java API是一本程序员的 字典 ,是JDK中提供给我们使用的类的说明文档。这些类将底层的代码实现封装了起来,我们不需要关心这些类是如何实现的,只需要学习这些类如何使用即可。所以我们可以通 ...
分类:
编程语言 时间:
2020-07-08 15:16:48
阅读次数:
61
dubbo的spi机制源码流程 1.0 源码解读见dubbo官网:http://dubbo.apache.org/zh-cn/docs/source_code_guide/dubbo-spi.html 1.1 SPI 全称为 Service Provider Interface,是一种服务发现机制。 ...
分类:
其他好文 时间:
2020-07-08 15:01:11
阅读次数:
55
MyBatis 1.三层架构 三层架构:界面层(User Interface layer),业务逻辑层(Business Logic Layer),持久层(Data access layer) 三层架构通常对应的框架: 界面层:SpringMVC 业务层:Spring 持久层:MyBatis 关于三 ...
分类:
其他好文 时间:
2020-07-08 13:10:52
阅读次数:
83
测试项目已上传到码云,可以下载:https://gitee.com/yangxioahui/aopdemo.git 具体如下: public interface Calc { Integer add(int num1,int num2); }//目标是对add 方法进行切入 @Component p ...
分类:
其他好文 时间:
2020-07-08 13:07:10
阅读次数:
52
前提条件:把互相调用服务在Nacos进行注册 1.引入依赖 2.在调用端的启动类添加注解 3.在调动端创建interface,使用注解指定调用服务名称,定义调用的方法路径 注意:参数中@PathVariable("id")一定要加上参数名称 4.在Controller中实现代码 ...
分类:
编程语言 时间:
2020-07-08 11:42:07
阅读次数:
122
需要引用strUtils unit Unit1; interface uses Windows, StrUtils,Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TF ...
静态代理: 例子: 接口: public interface InterfaceBase { void proxy(); } 接口实现类: public class InterfaceBaseReal implements InterfaceBase{ public void proxy() { S ...
分类:
编程语言 时间:
2020-07-07 19:45:05
阅读次数:
66
接着AbstractApplicationContext.refresh方法:initApplicationEventMulticaster,该方法用来初始化事件广播器,流程如下: protected void initApplicationEventMulticaster() { // 获取Bea ...
分类:
编程语言 时间:
2020-07-07 15:27:54
阅读次数:
80
欲观原文,请君移步 书籍资料 先来第一本:小编读完感觉就是大师的书籍(关于硬件底层设计),就算学不会技术,也能提高自己的文学水平了,现在少有的好书了,强烈推荐。(可以去某宝或某东去购买) 再来一本:前五章跟《手把手教你设计CPU》类似,对嵌入式感兴趣的人适合阅读。(可以去某宝或某东去购买) 除了开发 ...
分类:
其他好文 时间:
2020-07-07 10:16:49
阅读次数:
217