SpringBoot
以 Spring 方式建立企業 Java 應用程式
例子
- 防止暴力身份驗證嘗試
- 連續 3 次登入嘗試失敗後封鎖使用者帳戶
- 限制使用者的最大會話數
- 設定會話逾時並在逾時時更新資料庫表
- 角色和權限管理
- 追蹤用戶登入
- 忘記密碼並發送電子郵件重設密碼
- 強制使用者首次登入時變更密碼
- 強制使用者更改過期密碼
- 資料分頁、搜尋和排序
- 使用 select2 ajax 遠端資料的分頁結果
- 發送帶有附件的電子郵件模板
- 多語言網路應用程式
- 產生 PDF 和 Excel 文件
- 使用 Ajax 以一種形式上傳資料和文件
建置和運行
mvn package
java -jar SpringBoot-0.0.1-SNAPSHOT.war
使用 Ajax 以一種形式上傳資料和文件
圖表
忘記密碼 發送郵件 重設密碼
使用 Socket 追蹤用戶登入
參考號
- https://www.baeldung.com/httpclient-ssl
- https://www.devglan.com/spring-boot/spring-boot-websocket-integration-example
- https://www.java67.com/2016/10/5-difference- Between-stringbuffer.html
- https://www.journaldev.com/741/java-socket-programming-server-client
- https://github.com/up1/soa_group6/wiki/Cross-Origin-Resource-Sharing-(CORS)
- https://medium.com/@phayao/ทำให้-token-ซับซ้อนด้วย-jwt-ใน-spring-boot-a74293bb736
- https://medium.com/@dassum/securing-spring-boot-rest-api-with-json-web-token-and-jdbc-token-store-67558a7d6c29
- https://javadeveloperzone.com/spring-boot/spring-boot-oauth2-jdbc-token-store-example/
- https://www.baeldung.com/spring-security-create-new-custom-security-expression
- https://medium.com/better-programming/secure-a-spring-boot-rest-api-with-json-web-token-reference-to-angular-integration-e57a25806c50
- https://pattern-match.com/blog/2018/10/17/springboot2-with-oauth2-integration/
- https://www.youtube.com/watch?time_continue=422&v=wxebTn_a930
- http://www.thinkplexx.com/learn/howto/security/tools/understanding-java-keytool-working-with-crt-files-fixing-certificate-problems
- https://stackoverflow.com/questions/4325263/how-to-import-a-cer-certificate-into-a-java-keystore
- https://docs.spring.io/spring-boot/docs/current/reference/html/appendix-application-properties.html
- https://www.vogella.com/tutorials/JavaPerformance/article.html
- https://www.javainuse.com/spring/springboot_session_redis
- https://docs.spring.io/spring-session/docs/current/reference/html5/guides/boot-redis.html
- https://www.callicoder.com/configuring-spring-boot-application/
- https://github.com/spring-projects/spring-security-oauth/blob/master/spring-security-oauth2/src/test/resources/schema.sql
- https://www.devglan.com/spring-security/spring-boot-security-oauth2-example
- https://sysadmin.psu.ac.th/2019/03/03/what-is-oauth2/