Wayne's Talk
  • Android
    • Android
    • Kotlin
  • iOS
    • iOS
    • 建立第一個 SwiftUI App
    • Swift
  • Spring Boot
    • Spring Boot
    • Spring Security Explained
  • Machine Learning
    • Machine Learning
    • Data Visualization
    • Supervised Learning
  • Deep Learning
    • Deep Learning
    • Neural Networks
    • Vision Models
    • Natural Language Processing
  • Misc.
    • Algorithm
    • LeetCode
    • Software Design
    • Operating System
    • Go
    • Node.js
    • Angular
    • 閱讀心得
  • 中文 (台灣)
    • 中文 (台灣)
    • English
CATEGORIES
  • Algorithm (7)
  • Android (30)
  • Angular (2)
  • Deep Learning (18)
    • Natural Language Processing (11)
    • Neural Networks (2)
    • Vision Models (5)
  • Go (2)
  • iOS (31)
    • 建立第一個 SwiftUI App (12)
  • Kotlin (7)
  • LeetCode (17)
  • Machine Learning (19)
    • Data Visualization (9)
    • Supervised Learning (2)
  • Misc. (1)
  • Node.js (4)
  • Operating System (6)
  • Software Design (1)
  • Spring Boot (16)
    • Spring Security Explained (6)
  • Swift (9)
  • 閱讀心得 (5)
TAGS
Android Service (2) Assembly (3) Backtracking (4) Binary Search Tree (1) Breadth First Search (5) Broadcast Receiver (1) C (2) CocoaPods (1) Combine (1) Concurrency (5) Content Provider (2) Core Data (2) Coroutine (4) Depth First Search (4) Dynamic Programming (4) Firebase (2) Java (26) JavaScript (2) JPA (4) Kotlin (41) Matplotlib (9) Monotonic Stack (3) MySQL (2) NPM (3) OAuth 2.0 (1) Pandas (2) Plotly Express (8) Priority Queue (1) Python (31) PyTorch (8) Room (3) SciPy (3) Seaborn (5) Springdoc (3) Spring Security (6) Swift (29) Swift Package (6) SwiftUI (10) Trie (3) TypeScript (4) Union Find (2) Word Embeddings (2) XCFrameworks (4) Xcode (15) YOLO (4)
0
0
0
Wayne's Talk 韋恩愛講話
Follow My GitHub
Get source code of posts.
Follow
Wayne's Talk 韋恩愛講話
  • Android
    • Android
    • Kotlin
  • iOS
    • iOS
    • 建立第一個 SwiftUI App
    • Swift
  • Spring Boot
    • Spring Boot
    • Spring Security Explained
  • Machine Learning
    • Machine Learning
    • Data Visualization
    • Supervised Learning
  • Deep Learning
    • Deep Learning
    • Neural Networks
    • Vision Models
    • Natural Language Processing
  • Misc.
    • Algorithm
    • LeetCode
    • Software Design
    • Operating System
    • Go
    • Node.js
    • Angular
    • 閱讀心得
  • 中文 (台灣)
    • 中文 (台灣)
    • English
Photo by Elena Mozhvilo on Unsplash
  • Spring Boot

使用 Spring Boot 傳送 Email

  • ByWayne
  • 04/12/2022
  • 2.7K views
後端程式常常需要寄信給使用者,如註冊完成、忘記密碼、訂購完成等等。本文章將介紹如何利用 FreeMarker 建立信件模板,並利用 Spring Mail 透過 Gmail SMTP 傳送 email。
Read More
0
0
0
0

Browsing Category

Spring Boot

16 posts
Photo by Elena Mozhvilo on Unsplash
Read More
  • 2.7K views
  • 1 minute read
  • Spring Boot

使用 Spring Boot 傳送 Email

  • ByWayne
  • 04/12/2022
後端程式常常需要寄信給使用者,如註冊完成、忘記密碼、訂購完成等等。本文章將介紹如何利用 FreeMarker 建立信件模板,並利用 Spring Mail 透過 Gmail SMTP 傳送 email。
Read More
0
0
0
0
Photo by Jonathan Gallegos on Unsplash
Read More
  • 5.4K views
  • 3 minute read
  • Spring Boot

Spring Data JPA 使用原生 SQL 來自定義查詢

  • ByWayne
  • 13/09/2021
Spring Data JPA 簡單化存取資料庫的動作。開發者可以省去撰寫很多簡單的查詢 SQL。本章介紹如何用 Spring Data JPA 使用原生 SQL 來建立複雜的查詢 SQL。
Read More
0
0
0
0
Photo by Heidi Kaden on Unsplash
Read More
  • 4.6K views
  • 1 minute read
  • Spring Boot

Spring Boot: 利用 FCM 發送 Push Notifications

  • ByWayne
  • 18/05/2021
Firebase Cloud Messaging (FCM) 可以讓我們傳送訊息給 Android、iOS、或 Web 應用程式,也就是所謂的 push notifications(推播)。本文章將介紹如何在 Spring Boot 透過 FCM 發送 push notification。
Read More
0
0
0
0
Photo by rehan shaik on Unsplash
Read More
  • 2.4K views
  • 1 minute read
  • Spring Boot

Spring Boot 自定義 Exception Handling

  • ByWayne
  • 06/05/2021
在開發 Spring Boot 時,當我們丟出一個 exception,Spring Boot 的 exception handler 會幫我們處理它,並且傳回一個 JSON 給前端。我們將在本文章中,說明如何自訂義這個回傳給前端的 JSON 內容。
Read More
0
0
0
0
Photo by Nadezhda Filatova on Unsplash
Read More
  • 1.5K views
  • 1 minute read
  • Spring Boot

如何在 Spring Boot + Kotlin 中使用 @Value

  • ByWayne
  • 27/09/2020
如果程式是 Java 的話,就可以用 @Value(“${name}”) 來取得 my.food 的值。但是,如果程式是 Kotllin 的話,上面的方式就會失敗。必須要改為用 @Value(“\${name}”) 的寫法。
Read More
0
0
0
0
Photo by Kamile Leo on Unsplash
Read More
  • 5.1K views
  • 5 minute read
  • Spring Boot
  • Spring Security Explained

Spring Security + Google Sign-In + JWT + JPA 實例解析

  • ByWayne
  • 21/09/2020
本章將介紹在 Spring Security 下,如何在前端做 Google Sign-In 登入後,取得 Authorization Code 並傳給後端。後端和 Google 驗證過後,再傳 JWT 給前端。
Read More
0
0
0
0
Photo by Nick Karvounis on Unsplash
Read More
  • 8.9K views
  • 4 minute read
  • Spring Boot
  • Spring Security Explained

Spring Security + OAuth Login + Google Sign-In 架構與實例解析

  • ByWayne
  • 14/09/2020
本章將深入淺出解析 Spring Security 的 OAuth Login。並且,以 Google Sign-In 為例,顯示如何用 Spring Security 的 OAuth Login 來整合 Google Sign-In。
Read More
0
0
0
0
Photo by Ivo Rainha on Unsplash
Read More
  • 6.8K views
  • 5 minute read
  • Spring Boot
  • Spring Security Explained

Spring Security + JWT + JPA + Springdoc 實例解析

  • ByWayne
  • 03/09/2020
本章將介紹在 Spring Security 下,如何實作 JWT-Token-Based 驗證的方法。我們將解釋如何從 JPA 讀取 Username/Password 來做登入驗證,如何產生 JWT Token,以及如何驗證 JWT Token。
Read More
0
0
0
0
Photo by Felix Kolthoff on Unsplash
Read More
  • 3.9K views
  • 4 minute read
  • Spring Boot
  • Spring Security Explained

Spring Security + Form Login + JPA + Springdoc 架構與實例解析

  • ByWayne
  • 31/08/2020
本章將介紹,如何使用 Spring Security 的 Form Login。並且,還會介紹如何整合 JPA。此外,我們會對 Form Login 的流程與架構,做一個深入的解析。最後,再介紹如何整合 Springdoc。
Read More
0
0
0
0
Photo by Paulo Evangelista on Unsplash
Read More
  • 6.4K views
  • 4 minute read
  • Spring Boot
  • Spring Security Explained

Spring Security 架構解析

  • ByWayne
  • 24/08/2020
Spring Security 是 Spring Boot 官方建議使用的 Authentication Framework。它的強大是眾所皆知,但它的複雜卻是惡名昭彰。本章將深入淺出探討 Spring Security 的架構。
Read More
0
0
0
0
LANGUAGES
  • English
RECENT POSTS
  • 持續買進 1
    《閱讀心得》持續買進:資料科學家的投資終極解答,存錢及致富的實證方法
    • 29/04/2025
    • 119 views
  • Photo by Logan Armstrong on Unsplash 2
    生成式預訓練 Transformer 模型(Generative Pre-trained Transformer, GPT)
    • 23/04/2025
    • 174 views
  • Photo by Maarten van den Heuvel on Unsplash 3
    雙向 Transformer 編碼器表徵(Bidirectional Encoder Representations from Transformers, BERT)
    • 15/04/2025
    • 251 views
  • Photo by Daryan Shamkhali on Unsplash 4
    Transformer 模型
    • 03/04/2025
    • 212 views
  • Photo by Anthony Tran on Unsplash 5
    注意力模型(Attention Models)
    • 19/03/2025
    • 229 views
MOST VIEWS
  • Photo by Jonatan Pie on Unsplash 1
    Python 長條圖(Bar Charts)
    • 18/01/2021
    • 30.9K views
  • Photo by Hans-Jurgen Mager on Unsplash 2
    Kotlin Coroutine 教學
    • 21/12/2020
    • 15.4K views
  • Photo by Ali Inay on Unsplash 3
    Python 散佈圖/折線圖(Scatter/Line Charts)
    • 25/01/2021
    • 14.1K views
  • Photo by Emile Mbunzama on Unsplash 4
    Spring Boot + REST APIs + JPA 教學
    • 20/07/2020
    • 13.6K views
  • 5
    Python 圓餅圖/環狀圖/放射環狀圖(Pie/Donut/Sunburst Charts)
    • 09/02/2021
    • 13.1K views
Photo by Jonatan Pie on Unsplash
Read More
  • 30.9K views
  • 4 minute read
  • Data Visualization
  • Machine Learning

Python 長條圖(Bar Charts)

  • ByWayne
  • 18/01/2021
Photo by Hans-Jurgen Mager on Unsplash
Read More
  • 15.4K views
  • 7 minute read
  • Android
  • Kotlin

Kotlin Coroutine 教學

  • ByWayne
  • 21/12/2020
Photo by Ali Inay on Unsplash
Read More
  • 14.1K views
  • 3 minute read
  • Data Visualization
  • Machine Learning

Python 散佈圖/折線圖(Scatter/Line Charts)

  • ByWayne
  • 25/01/2021
Photo by Emile Mbunzama on Unsplash
Read More
  • 13.6K views
  • 4 minute read
  • Spring Boot

Spring Boot + REST APIs + JPA 教學

  • ByWayne
  • 20/07/2020
Subscribe to My Newsletter
Wayne's Talk
  • 關於韋恩
  • 聯繫韋恩
  • 使用條款
  • 免責聲明
  • 隱私權政策
0
0
0
0
© 2020 - 2025 Wayne's Talk. All Rights Reserved.