christinatilly
積分 0
Understanding the basic Odoo tools will provide you an insight to its development as well as customization helping you to craft the platform with ease
koji
積分 1
List<URLData> retrieveURLs(URL... urls) throws Exception {
try (var executor = Executors.newVirtualThreadExecutor()) {
var tasks = Arrays.stream(urls)
.map(url -> (Callable<URLData>)() -> getURL(url))
.toList();
return executor.submit(tasks)
.filter(Future::isCompletedNormally)
.map(Future::join)
.toList();
}
}
乍看想說isCompletedNormally會true嗎,結果這是新API然後 submit(java.util.Collection)1
Returns:
stream of completed Futures
這 code review 沒看過的會搞不懂吧
christinatilly
積分 1
Travis CI is a continuous integration tool that can be integrated with your project to automatically test and deploy on each change you made
IngramChen
積分 2
大部份都同意。所以我早早就轉 MyBatis 了
台灣因為博奕業的關係 -> 因為博奕都是中國的關係 -> 因為中國都用 MyBatis 的關係 -> MyBatis 開始在台灣比較有能見度了,就結果來說是件好事。
前後端分離後,Hibernate detached session 用不到,2nd level cache 也變成沒什麼用,是該被時代淘汱了。