Host By Android Studio Emulator With RTSP Security Server terminal 1 emulator -avd [device_name] emulator power on wait till Boot completed open RTSP Security Server App terminal 2
Apr 14, 2023聯級管理 OneToMany orphanRemoval - 若 Many 方在 One 方修改後無對應的關聯對象,則自動刪除。example: @OneToMany(mappedBy = "parent", cascade = CascadeType.ALL, orphanRemoval = true) private List<Child> children = new ArrayList<>(); 修改前 { "id": "parent"
Mar 7, 2023排序ROW_NUMBER() = INDEX ( 1 2 3 4 5 6 ) ROW_NUMBER() OVER ( ORDER BY number ) as 'index' RANK() = 非連續排名 ( 重複名次時會跳過下一名 ex: 1 1 3 4 4 6 ) RANK() OVER ( ORDER BY score ) as 'rank' DENSE_RANK() = 連續重複排名 ( ex: 1 1 2 3 4 5 ) DENSE_RANK() OVER ( ORDER BY score ) as 'dense_rank'
Mar 7, 2023LocalDate to Date Date.from(localDate.atStartOfDay(ZoneId.systemDefault()).toInstant()) Issue someone 提到 April 1893 時間有誤,因 atStartOfDay 調整過值。
Mar 7, 2023or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up