1. 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= ...

    阅读全文
  2. 现代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._ ...

    阅读全文
  3. “青少儿编程”的概念,起源于麻省理工(MIT)推出的“可编程式积木”(Scratch)平台,使用者不需要了解编程,只需拖拽事先封装好的积木式模块,“搭建”出指令,设置或控制角色及其行动和变化即可。这个过程中,可以培训儿童的逻辑思维能力、创造力和解决问题的能力,能让儿童启发发现问题、分析问题和解决问题的系统性思考能力。同时,MIT针对幼儿(5-7岁)推出了更适合他们的编程平台——Scratchjr,相较 ...

    阅读全文
  4. 本文链接:https://blog.csdn.net/strivezxq/article/details/44560771  把spring 相关类做了下整理,把spring主要涉及的类都整理成类图,方便查看它们之前的关系,也能帮助更好的阅读分析源码. 1. IOC容器 BeanFactory类图: 2.  资源Resource相关类图: 3. 资源加载器ResourceLoader相关类图: 4. spring Bean定义解析器相关: ...

    阅读全文
  5. 动态规划来解决一些最优解的问题,常常可以将暴力算法的指数级时间复杂度降到O(n2)和O(n3)。动态规划并不难,只要按四个步骤就能找出最优解。 刻画一个最优解的结构特征。 递归地定义最优解的值。 计算最优解的值,通常使用自底向上的方法。 利用计算出的信息构造一个最优解。 动态规划的两个要素:最优子结构和子问题重叠。 最优子结构:如果一个问题的最优解包含其子问题的最优解,我们就称此问题具有最优子结构性质。 子问题重叠:递归算法反复求解相同的子问题, ...

    阅读全文
  6. 初识webDAV2018-06-08

    什么是webDAV? Web Distributed Authoring and Versioning (WebDAV) is an extension of the Hypertext Transfer Protocol (HTTP) that allows clients to perform remote Web content authoring operations. WebDAV is defined in RFC 4918 by a working group of th ...

    阅读全文
  7. https://www.jetbrains.com/idea/download IntelliJ IDEA 社区版是免费的,Licence :apache2.0.  就是有点大,安装包500+M. Community Edition is open-source, licensed under Apache 2.0. Projects like Android and Swift use Apache 2.0, so you're in good comp ...

    阅读全文
  8. 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 ...

    阅读全文
  9. SVG初体验2017-12-04
    33430

    一段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 ...

    阅读全文
  10.  本文收集了CSS实现的基本形状,以及border-radius的文档解释。 border-radius中比较难理解的是由/设置的附加弧度实现椭圆型的边角。 Syntax The border-radius property is specified as: 1.one, two, three, or four <length> or <percentage> values. This is used to set a single ...

    阅读全文
  11. IDC国际数据公司 https://www.idc.com.cn/about/about.jsp https://idc-community.com/about ...

    阅读全文
  12. 蓝色配色2020-08-17

    https://ww1.sinaimg.cn/mw690/74cf050fjw1ejy37k1ognj20c818gmyi.jpg ...

    阅读全文
  13. 本文转载自 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 ...

    阅读全文
  14. 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 ...

    阅读全文
  15. 在学习spring框架生成pdf文档的示例时初识接触到了iText库,本文为学习iText简单提要. https://www.lowagie.com/iText/ 为项目出处,后来这个项目转化为商业版本,所以com.lowagie这个package再也不继续维护和开发了,转向了com.itext包,而对应的官方网站也改为了 https://itextpdf.com/en 。 如果继续学习和使用com.lowagie这个免费包,学习文档可以在此查到&nbs ...

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

    阅读全文
  17. 1. 这个Docker视频demo了一个Docker的应用场景: https://www.youtube.com/watch?v=YFl2mCHdv24 2. <<Kubernetes for Beginners - Docker Introduction>> 这个视频非错不错的解释了Docker解决的痛点以及其架构。 https://www.youtube.com/watch?v=rmf04ylI2K0 3. 《Introduction to Ku ...

    阅读全文
  18. 如何在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 ...

    阅读全文
  19. 呵呵,比较有用,网上摘抄的。留着备用吧。   名称 : crontab 使用权限 : 所有使用者 使用方式 : crontab file [-u user]-用指定的文件替代目前的crontab。 crontab-[-u user]-用标准输入替代目前的crontab. crontab-1[user]-列出用户目前的crontab. crontab-e[user]-编辑用户目前的crontab. crontab-d[user]-删除 ...

    阅读全文
  20. Oracle Integration Cloud Service (一)管理Oracle ICS https://docs.oracle.com/en/cloud/paas/integration-cloud-service/icsug/administering-integration-cloud-services.html Topics Monitoring Integrations  监控集成 Managing Integrat ...

    阅读全文