找到约 10000 条结果
  • Spring项目中使用 getBean()+PropertySourcesPlaceholderConfigurer 踩坑记录
    在进入正题之前,首先简单介绍一下标题中提到的两个Spring中的概念,以及给出一个PropertySourcesPlaceholderConfigurer的入门使用场景概念介绍:
    2021-09-09
  • 工作阅读(7) —— 2021年2月阅读文章
    阅读目录——更新ing一、golangJSON unmarshaling with long numbers gives floating point numberStop json.Marshal() from stripping trailing zero from floating point numberGolang 中遇到的一些关于 JSON 处理的坑Awesome GoCould not build on macOS for linux amd64 undefined: unix.GetsockoptLingerFull-text se...
    2021-04-15
  • SAP CRM Product simple search的启用步骤
    (1) Switch on business function CRM_SEARCH_1, which controls the business switch CRM_BP_SFWS_BP_SEARCH_2 which will be evaluated in the related code.
    2020-09-05
  • TypeScript入门-类
    学习Angular 2 , 《揭秘Angular 2》读书笔记。Angular2 选择 TypeScript 作为其官方最主要的构建语音,这意味着掌握 TypeScript 语音将更有利于高效地开发 Angular 应用。
    2017-04-05
    1
  • 一个通过物理地址查询网卡所属厂商的Python库——mac.py
    A python lib to search Manufacturer of mac address. With only one method search.
    2016-05-03
  • docker实战
    执行 systemctl status docker 时会报 Failed to start Docker Application Container Engine.
    2018-03-29
  • http跟https的区别
    http: Hypertext transform protocol 超文本传输协议   是一个为了传输超媒体文档(比如html)的应用层协议   是为了web的浏览器跟web的server端的交流而设计的,他使浏览器更加高效,使网络传输减少   明文的,不加密   默认端口是80  https:Hypertext transform protocol secure 超文本传输安全协议    就...
    2019-10-08
  • SAP CRM附件模型和搜索相关的属性介绍
    For more detail about CRM content management, please go to my wiki page CRM Content Management.
    2020-09-04
  • 鸿蒙Flutter生成hap包编译过程可能遇到的问题
    windows, 使用 Git Bash 可以执行常见的linux命令。(使用方式:鼠标右键点击文件管理器中的空白处,左键点击 Git Bash Here)
    2024-11-07
  • MySQL运维实战(4.8) SQL_MODE之NO_ENGINE_SUBSTITUTION
    作者:俊达在MySQL中,NO_ENGINE_SUBSTITUTION是一个SQL MODE,用于控制MySQL在遇到不可用或不存在的存储引擎时的行为。当NO_ENGINE_SUBSTITUTION未设置时,MySQL会尝试使用默认的存储引擎替代掉用户指定的存储引擎。这可能导致用户无法察觉地使用了不符合要求的存储引擎。设置NO_ENGINE_SUBSTITUTION后,如果指定的存储...
    2024-01-26
  • SAP Fiori Elements应用里Back按钮的实现逻辑分析
    One of my colleagues today asked me this question: Suppose this below is an application generated by Smart Template, and I would like to debug how the back button is implemented. Since the whole UI page is implemented by framework, I don’t know where to set breakpoint. How to proceed?
    2020-08-31
  • 铜锁支持大数运算硬件加速机制
    密码学中的很多算法,如 RSA、Paillier、ECC、EC-ElGamal、Diffie-Hellman 密钥交换等,都涉及大数运算,大素数生成、大数乘法、大数模幂等在加密和解密过程中都是必不可少的运算。加密货币和区块链技术中的密码学算法都依赖于大数运算。我们知道,数字越大,运算速度也越慢,但数字越小就越不安全。所以,RSA 为了安全...
    2023-07-12
  • leetcode-211-Add and Search Word - Data structure design
    原题: {代码...} 总结:栈 stack 的利用,先进后出的作用,可以保持 链表一类的数据的连贯操作,可以用来替代广度搜索。 {代码...} {代码...}
    2018-08-20
  • didi 使用解析
    在 bpmnjs 核心全部使用了didi。想要理解源码,了解didi的使用在所难免。理解下来,感觉这是一种全新的程序组织方式优点:使用didi模块声明方式didi 管理全局模块new 一个带模块的didi实例即使程序入口可以实现程序的低耦合高内聚,通过$inject注入需要的依赖缺点:模块注册的多了,寻找起来就比较困难,你都不知道你需...
    2022-07-12
  • Java6的新特性
    Java语言特性系列Java5的新特性Java6的新特性Java7的新特性Java8的新特性Java9的新特性Java10的新特性Java11的新特性Java12的新特性Java13的新特性Java14的新特性Java15的新特性Java16的新特性Java17的新特性Java18的新特性Java19的新特性Java20的新特性Java21的新特性Java22的新特性Java23的新特性Java24的新特性序本文...
    2016-02-05
  • 七天实现web框架--路由映射
    也就是说实现了handler的接口,那么就有了处理请求的能力。那么我们来看实现handler这个接口的条件是什么。这里肤浅的解释一下这个go接口的实现,在go语言中是支持鸭子类型的,所以我们只要实现了接口里面的方法,那么就实现了这个接口。handler接口:
    2022-04-12
  • Search for a Range & Search Insert Position leetcode
    Given a sorted array of integers, find the starting and endingposition of a given target value. Your algorithm's runtime complexity must be in the order of O(log n). If the target is not found in the array, return [-1, -1]. For example, Given [5, 7, 7, 8, 8, 10] and target value 8, return [3,4].
    2016-01-12