1. 众多Javascript框架中AngularJS和KnockoutJs都属于MVVM架构。 本文将学习两者的基本用法和比较两者的不同。 todo   一些术语: Passive View: Active View: Separation of Concerns (SoC) 参考文档: https://addyosmani.com/blog/understanding-mvvm-a-guide-for-javascript-devel ...

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

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

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

    阅读全文
  5. 本文是学习springmvc官方文档的学习摘要。 https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html#mvc-servlet   知识点 1) DispatcherServlet DispatcherServlet WebApplicationInitializer AbstractAnnotationConfig ...

    阅读全文
  6. 参考文章: https://www.cnblogs.com/51kata/p/5152400.html http://www.cnblogs.com/fangjian0423/p/servletContainer-tomcat-urlPattern.html Servlet容器Tomcat中web.xml中url-pattern的配置详解[附带源码分析] https://blog.csdn.net/mengxiangxingdong/article/details/806 ...

    阅读全文
  7. MvcUriComponentsBuilder 和 ControllerMethodInvocationInterceptor的解读   ControllerMethodInvocationInterceptor实现了CGLIB的MethodInterceptor,所以是CGLIB动态代理的方法拦截器,从命名来看是对Controller的方法做了争强。同时也实现了org.aopalliance.intercept.MethodInterceptor private ...

    阅读全文
  8. 应用场景:京东,淘宝等双十一活动多多,送券,满多少送多少等买很多物品后,再使用优惠券等,不同的下单方式都会有不同的实惠。 比如现有下面的活动,图书狂欢节,每满100减50。结算时还可以使用优惠券。现有两张现金结算券,一张是满300减100(券1),一张是满150减50(券2)。用户希望购买下面的书单。 《书1》价格 175 《书2》价格 22.6 《书3》价格 37.5 《书4》价格 65.6 《书5》价格 160.9 《书6》价格 84.6 《书 ...

    阅读全文
  9. EGD: entropy gathering device 获取熵的设备 (熵池策略) 这些设备有: file:/dev/random  (阻塞式随机设备,依赖约硬件设备) file:/dev/urandom (非阻塞式随机设备)  file:/dev/./urandom(非阻塞式随机设备) https://www.baeldung.com/java-security-egd ...

    阅读全文
123