1. 微信开发有两类账户,听起来有点拗口。 1) 微信开放平台账户:用于第三方网站/app的接入开发 2)微信公众平台账户: 用于微信公众号的开发 微信开放平台(https://open.weixin.qq.com), 范畴应该大于微信公众平台。 微信公众号平台(https://mp.weixin.qq.com)   ...

    阅读全文
  2. 本文简单理一理一些企业软件及其市场,这些企业软件应用在不同领域,有不同的软件供应商开发. 我们以Nutanix这家公司为例,其使用了不同软件开发商提供的软件系统: Corporate Travel Management Software Time and Expense Software Inventory Management Software Finanical Close Management Software Product Lifecycle Management ( ...

    阅读全文
  3. Deployment to application servers uses deployment profiles which rely on project metadata for the default mappings. Default contributors to the profiles are based on project dependencies, although you can customize the deployment profiles to change t ...

    阅读全文
  4. 这篇是阿里云的产品思维导图。可以看出对比AWS和Azure它的分类层级更深一层更细化一些,产品总类也更多些。 先看一下两层机构,再一层层展开。 阿里云产品分为9大类,比腾讯云多分两大类,比Azure和AWS少分8大类。 各大类展开:                                   ...

    阅读全文
  5. Normally use the String concatenations using :  +, StringBuffer.append(), String.concat(). We always think that using ‘+’ operator for String Concatenation is slow.  This is true but not always. For Ex: String str = “Th ...

    阅读全文
  6. geography 地理: Agentine Repulic 阿根廷 Agentina Austria ['ɔːstriə] 奥地利 Australia [ɔ'streljə] 澳大利亚 Brazil [brə'zɪl] 巴西  Belgium  ['beldʒəm] 比利时  Cuba ['kjuːbə] 古巴 Cuban 古巴人 ...

    阅读全文
  7. Imperatives Imperatives - 命令式 动词的命令式用于提出要求或发出命令。 在英语中,命令式由不带 to 的不定式构成,对于所有的人称形式相同。   例如: Go home!   (回家!)   Take a seat!   (坐下!) 其否定式由助动词 ...

    阅读全文
  8. Error Info2016-06-30

    <2016-06-30 01:53:50,083> <ConfigurationLoader:DEBUG> Loading configuration file :/com/agile/webfs/configuration/WebSecurity.properties <2016-06-30 01:53:50,100> <ConfigurationLoader:DEBUG> Loading configuration file :/com/ ...

    阅读全文
  9. 发现这个网站,值得推荐给所有的程序员看一下。 程序员的自我修养:网站链接如下: https://leohxj.gitbooks.io/a-programmer-prepares/content/ 文章简洁明了,列举了程序员必备的基础知识,已经作者收集的很多不错的网站链接。 这里列出该书(网站)的目录链接以供快速访问。 1. 程序员基础知识 1.1. 字符编码 1.2. 技术名词 1.3. 语义 ...

    阅读全文
  10. 如何在oracle ADF框架下开发测试部署SOAP web services. 本文参考官方文档的解读版:“Creating SOAP Web Services with Application Modules” :https://docs.oracle.com/cd/E51366_01/adf/develop/bcextservices.htm#ADFFD534 官网分为三部分讲述了这个问题: Section 11.1, "In ...

    阅读全文
  11. Veeva Systems2018-09-18

    Veeva System 官网:https://www.veeva.com/ Veeva Systems is a software company that provides cloud-based data management and CRM solutions to the life science industries. Veeva Systems's headquarters is in Pleasanton, California. Veeva Systems ...

    阅读全文
  12. 本文转载自 http://codingstandards.iteye.com/blog/836625 用途说明 exit命令用于退出当前shell,在shell脚本中可以终止当前脚本执行。 常用参数 格式:exit n 退出。设置退出码为n。(Cause the shell to exit with a status of n.) 格式:exit 退出。退出码不变,即为最后一个命令的退出码。(If n is omitted, the exit ...

    阅读全文
  13. UML工具2019-09-06

    plantUML:http://plantuml.com/zh/class-diagram。 PlantUML是一个开源项目,支持快速绘制UML各类图表以及一些非UML图表。 plantText: https://www.planttext.com/ 是一个在线网站,可以用来设计UML以及生成代码。 UML图表有: 时序图 用例图 类图 活动图  组件图 状态图 对象图 部署图  定时图&n ...

    阅读全文
  14. 原文出处: 肖汉松的博客 (写的很好,易懂,所以直接搬过来了) http://blog.xiaohansong.com/2015/10/21/IoC-and-DI/ IoC : Inversion of Control 前言 最近在学习Spring框架,它的核心就是IoC容器。要掌握Spring框架,就必须要理解控制反转的思想以及依赖注入的实现方式。下面,我们将围绕下面几个问题来探讨控制反转与依赖注入的关系以及在Spring中如何应用。 什么是控制反转? 什么是 ...

    阅读全文
  15. Create JWT的在线工具: http://jwtbuilder.jamiekurtz.com http://kjur.github.io/jsjws/tool_jwt.html 验证JWT的在线工具 http://jwt.io/ Base64 encode/decode的在线工具: https://www.base64encode.org https://www.base64decode.org ...

    阅读全文
  16. 页面出现这个错误:“No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost' is therefore not allowed access.” 这个原先是源于浏览器的跨域请求安全限制,解决办法可以通过设置请求Data类型jsonp或script来解决。 如: ...

    阅读全文
  17. 现代javascript有很多方法,这里列出一些常用方法: 方法一: 通过console.log()来打印调试信息。 (需要浏览器支持,不过大部分浏览器都支持。) SMART.utils.LOG = new SmartUtils.Class(); SMART.utils.LOG.extend({ DEBUG:0, INFO:1, ERROR:2, _level:2, _status:0, init: function(){ this._ ...

    阅读全文
  18. by Bas Dijkstra  转自 https://learn.techbeacon.com/units/how-set-continuous-testing-framework-using-selenium-maven-jenkins Last time I talked about the key components of a test automation framework. Now I'm going to provide a st ...

    阅读全文
  19. connect by的使用来用解决树形结构的表查询。可以向上根节点查询,也可以下叶子节点查询。 最简单的语法如下: //从给定的pid开始向下查询,直到叶子节点 select * from table start with pid=:bindingPID connect by prior pid=id //从给的的id开始向上查询,直到根节点 select * from table start with id=:bindingPID connect by prior id= ...

    阅读全文
  20. SVG初体验2017-12-04
    40080

    一段SVG代码开始SVG的学习 <svg version="1.1" id="clock" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="600px" height="60 ...

    阅读全文