原创 解決[PM2][ERROR] No script path - aborting錯誤

今天使用pm2在虛擬機上模擬進行nodejs項目的線上部署,準備對生產環境進行配置。 本次配置對應兩個文件,在app文件夾下的pm2.conf.json和package.json。 pm2.conf.json: { "apps":

原创 [Leetcode78, 90]之Subset與Subset ii的對比總結

Leetcode 78 Subset: Given a set of distinct integers, nums, return all possible subsets (the power set). Note: The solu

原创 [Java集合源碼] 一步一步解析 ArrayList 中常用方法的源碼

1. 默認數組大小爲10,在構造函數不傳入參數的時候使用默認大小 // ArrayList繼承了AbstractList,實現了RandomAccess、Cloneable和java.io.Serializable  public cl

原创 Spring Boot1.5.X不支持Velocity

最近在做關於Spring Boot開發的項目,因爲項目中要用到Velocity的模板引擎,而現在新版本在官網上已經不支持Velocity了。 不能加入velocity相關的依賴 在http://velocity.apache.org/d

原创 深入理解Node.js中的事件循環(帶例子和分析)

本文受: (上)https://zhuanlan.zhihu.com/p/26229293 (下)https://zhuanlan.zhihu.com/p/26238030 這兩篇知乎博文的啓發,對事件循環機制進行分析與總結。   對於J