1. 在 Java 8 之前,接口只能有抽象方法。这些方法的实现必须在单独的类中提供。因此,如果要在接口中添加新方法,则必须在实现同一接口的类中提供其实现代码。为了克服这个问题,Java 8 引入了默认方法(default method)的概念,该方法允许接口具有实现的方法,而不会影响实现接口的类。 // A simple program to Test Interface default // methods in java interface TestInterface { ...

    阅读全文
  2. //生成补丁 svn diff > patchname.patch //打补丁 patch -p0 < /patches/20170309.patch //查找打补丁过程中的失败文件 find . -name '*.rej'  //取消打补丁 patch -p0 -RE < /patches/20170309.patch 进一步阅读: http://stackoverflow.com/ques ...

    阅读全文
  3. 有这样的一段代码来显示一个数字。 <af:inputText value="mybean.studentId" > <af:convertNumber type="number"> </af:inputText> <af:outputText value="mybean.studentId"> <af:convertNumber pattern=&quo ...

    阅读全文
  4. 一个warning message导致navigation失败。网上搜的一些资料先记录在这. https://stackoverflow.com/questions/30128395/identifying-and-solving-javax-el-propertynotfoundexception-target-unreachable https://stackoverflow.com/questions/7031885/how-to-choose-the-right-bean ...

    阅读全文
  5. 本文参考 官方文档 本文的研究基于Oracle FMW 11.1.1 简介 前面介绍ORACLE Web Service分为两类:1)WebLogic Web Service 2)Oracle Infrasturcture Web Service. 如下图中黄色高亮显示部分为Oracle Infrastructure Web Service. 大体又可以分为以下几种: SOA Composite Services BPEL Process ...

    阅读全文
  6. food & drug administration (FDA) corrective and preventive actions (CAPA) FDA CAPA new product introduction (NPI)   printed circuit board (PCB)  design for manufacturability (DFM)  Design for Excellence (DFX) ...

    阅读全文
  7. 软件开发会涉及的几个方面。 现在有一个软件项目需要开发,假设你就是项目project leader。那你需要如何管理软件开发呢,有哪些需要考虑的呢?假设你就是一个纯技术管理人员,先不考虑人员和成本。 软件开发 软件测试 软件部署 软件交付和实施 流程管理 代码版本管理 发布管理 Release管理 开发模式 软件开发 常用功能分解(面向对象面向功能设计) 查询 配置 用户 安全 日志 ...

    阅读全文
  8. 本文摘自Spring Boot Reference Guide. 取其Documentation Table of Contents以供后期快速阅读。 Table of Contents I. Spring Boot Documentation 1. About the Documentation 2. Getting Help 3. First Steps 4. Working with Spring Boot 5. Learning about Spr ...

    阅读全文
  9. MVC - Model-View-Controller MVP - Model-View-Presenter MVVM - Model-View-ViewModel MVW / MV* - Model-View-Whatever Both MVP and MVVM are derivatives of MVC. The key difference between it and it’s derivatives&nb ...

    阅读全文
  10. 启动Tomcat8.5.11时遇到下面的异常: org.apache.tomcat.util.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 19 at org.apache.tomcat.util.bcel.classfile.Constant.readConstant(Constant.java:131) at org.apache.tomcat.util.bcel. ...

    阅读全文
  11. Spring Cloud学习过程中相关的知识点和软件项目: (1) Cloud Foundry: https://www.cloudfoundry.org/ ​   (2)Pivotal Web Services: https://run.pivotal.io/ (3)Zookeeper: https://zookeeper.apache.org/doc/current/zookeeperSt ...

    阅读全文
  12. todo: 有空写篇关于Transaction的研究 ...

    阅读全文
  13. 挖个坑,有空写篇关于session的文章 目前先整理了下面几篇文章: 通过Chrome学习cookie PHP session学习整理 Session存放在什么位置(Session持久化) 参考文章: Session机制详解 http://justsee.iteye.com/blog/1570652  ...

    阅读全文
  14. 如何invoking a SOAP service from PLSQL? the call is timing out within 60 seconds no matter what the timeout value we set using set_transfer_timeout method, we are getting the following error.   "Error Occurred. Message: ORA-29273: HT ...

    阅读全文
  15. zookeeper学习过程中收集的一些不错的资料   Zookeeper官方文档:https://zookeeper.apache.org/doc/current/zookeeperStarted.html Zookeeper Demo: https://www.youtube.com/watch?v=Qhc6RMaDkgY Apache Zookeeper | Hands-On - Znodes: https://www.youtube. ...

    阅读全文
  16. 最基本最简单的设置 如果想搭建自己的UI,可以仅仅使用basic plugin版本和最小的设置。下面是官网上提供首页index.html,只有最少的需求和最简单done回调处理程序。(参考官网提供的 API 和选项 Options 看如何使用不同的选项和回调函数): <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> ...

    阅读全文
  17. Wiring Components to Work Together This chapter describes service tables and how to wire particular Oracle Fusion Middleware components together. It contains the following sections: Understanding Service Tables Viewing Service ...

    阅读全文
  18. 根据spring guide写的sample project,从头到位自己试写一个。具体细节参考链接。     ...

    阅读全文
  19. Attributes vs. Properties The difference between attributes and properties can be important in specific situations. Before jQuery 1.6, the .attr() method sometimes took property values into account when retrieving some attributes, which could ca ...

    阅读全文
  20. 这是https://coverr.co提供的视频背景的实现方法。 1. Download your favorite video. 下载喜欢的视频 2. Upload the video to your website. 上传到你的网站 3. Add the following snippets to your site,加入代码   HTML代码: <div class="homepage-hero ...

    阅读全文