Home | 簡體中文 | 繁體中文 | 雜文 | 知乎專欄 | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 視頻教程 | 打賞(Donations) | About
知乎專欄多維度架構 | 微信號 netkiller-ebook | QQ群:128659835 請註明“讀者”

部分 I. Spring Framework

目錄

4. Spring 開發環境
4.1. Java 開發環境
4.2. 安裝 Spring Tool Suite
4.3. Dashboard
4.4. Spring Initializr - Bootstrap your application
5. Spring Boot
5.1. Spring Boot Quick start
5.1.1. 創建項目
5.1.2. pom.xml
5.1.3. Controller
5.2. Springboot with Maven
5.2.1. resource
5.2.2. Maven run
5.2.3. Spring Boot maven 插件 build-image
5.2.4. 生成項目信息
5.3. SpringApplication
5.3.1. 運行 Spring boot 項目
5.3.1.1. Linux systemd
5.3.1.2. 傳統 init.d 腳本
5.3.1.3. 編譯用於Tomcat的 War
5.3.2. @SpringBootApplication
5.3.2.1. 排除 @EnableAutoConfiguration 加載項
5.3.3. @EnableAutoConfiguration
5.3.4. @ComponentScan
5.3.5. @EntityScan 實體掃瞄
5.3.6. @EnableJpaRepositories
5.3.7. CharacterEncodingFilter
5.3.8. 隱藏 Banner
5.3.9. 實體與倉庫掃瞄
5.3.10. 列出 Beans
5.3.11. Tomcat 連接埠
5.3.12. 配置項設定
5.3.13.
5.4. Properties 配置檔案
5.4.1. application.properties 配置檔案
5.4.1.1. application.properties 參考
5.4.1.2. 啟動指定參數
5.4.1.2.1. --spring.config.location 指定配置檔案
5.4.1.2.2. --spring.profiles.active 切換配置檔案
5.4.1.3. 加載排除
5.4.1.4. PID FILE
5.4.1.5. server
5.4.1.5.1. 連接埠配置
5.4.1.5.2. Session 配置
5.4.1.5.3. cookie
5.4.1.5.4. error 路徑
5.4.1.5.5. 壓縮傳輸
5.4.1.5.6. ssl
5.4.1.6. logging
5.4.1.7. 內嵌 tomcat server
5.4.1.7.1.
5.4.1.7.2. server.tomcat.basedir
5.4.1.7.3. access.log
5.4.1.7.4. charset
5.4.1.8. servlet
5.4.1.8.1. 上傳限制
5.4.1.8.2. server.servlet.context-path
5.4.1.9. JSON 輸出與日期格式化
5.4.1.10. SMTP 相關配置
5.4.1.11. Redis
5.4.1.12. MongoDB
5.4.1.13. MySQL
5.4.1.14. Oracle
5.4.1.15. default_schema
5.4.1.16. datasource
5.4.1.17. velocity
5.4.1.18. Security 相關配置
5.4.1.19. MVC 配置
5.4.1.20. Kafka 相關配置
5.4.2. Properties 檔案
5.4.2.1. @Value 註解
5.4.2.2. containsProperty 讀取配置檔案
5.4.2.3. @PropertySource 註解載入 properties 檔案
5.4.2.4. @EnableConfigurationProperties 引用自定義 *.properties 配置檔案
5.4.2.5. 手工載入 *.properties 檔案
5.4.2.6. spring.profiles.active 參數切換配置檔案
5.4.2.7. SpringApplicationBuilder.properties() 方法添加配置項
5.4.2.8. 參數引用
5.4.2.9. 產生隨機數
5.4.2.10. List 列表類型
5.4.2.11. Map類型
5.4.2.12. Binder
5.5. Spring boot with Logging
5.5.1. 配置日誌檔案
5.5.1.1. 日誌輸出級別
5.5.1.2. Spring boot 2.1 以後的版本不打印 Mapped 日誌問題
5.5.1.3. 禁止控制台輸出日誌
5.5.1.4. 定製日誌格式
5.5.2. 打印日誌
5.5.2.1. lombok
5.5.3. logback 配置詳解
5.5.3.1. 標準輸出
5.5.3.2. 分隔日誌
5.5.3.3. 按照檔案尺寸分割日誌
5.5.3.4. 指定Class過濾日誌
5.5.3.5. 日誌寫入 MongoDB
5.5.3.6. configuration 屬性配置
5.5.3.7. contextName 設置上下文名稱
5.5.3.8. property 設置變數
5.5.3.9. encoder 日誌格式設置
5.5.3.10. RollingFileAppender
5.6. Spring boot with Jetty
5.7. Spring boot with HTTP2 SSL
5.7.1. 生成自簽名證書
5.7.2. application.properties 配置檔案
5.7.3. 啟動 Spring boot
5.7.4. restTemplate 調用實例
5.7.5. HTTP2
5.8. Spring boot with Webpage
5.8.1. Maven
5.8.2. application.properties
5.8.3. Application
5.8.4. IndexController
5.8.5. src/main/webapp/WEB-INF/jsp/index.jsp
5.8.6. 整合模板引擎
5.9. Spring boot with Velocity template
5.9.1. Maven
5.9.2. Resource
5.9.3. Application
5.9.4. RestController
5.9.5. Test
5.10. Spring boot with Thymeleaf
5.10.1. Maven
5.10.2. application.properties
5.10.3. Controller
5.10.4. HTML5 Template
5.11. Spring boot with Session share
5.11.1. Redis
5.11.1.1. Maven
5.11.1.2. application.properties
5.11.1.3. Application
5.11.2. 測試 Session
5.11.3. JDBC
5.11.4. Springboot 2.1
5.12. Spring boot with Caching
5.12.1. maven
5.12.2. 啟用 Cache
5.12.3. 測試 Controller
5.12.4. @Cacheable 的用法
5.12.5. @CachePut 用法
5.12.6. 解決Expire 和 TTL 過期時間
5.12.7. SpEL表達式
5.13. Spring boot with Email
5.13.1. Maven
5.13.2. Resource
5.13.3. POJO
5.13.4. RestController
5.13.5. Test
5.14. Spring boot with Hessian
5.14.1. Maven
5.14.2. Application
5.14.3. HessianServiceExporter
5.14.4. Service
5.14.5. RestController
5.15. Spring boot with Git version
5.15.1. CommonRestController 公共控製器
5.15.2. VersionRestController 測試控製器
5.15.3. 創建 .gitattributes 檔案
5.16. Spring boot with Data restful
5.16.1. Maven
5.17. Spring boot with ELK(Elasticsearch + Logstash + Kibana)
5.17.1. TCP 方案
5.17.2. Redis 方案
5.17.3. Kafka 方案
5.17.4. Other
5.18. Springboot with Ethereum (web3j)
5.18.1. Maven
5.18.2. application.properties
5.18.3. TestRestController
5.18.4. 測試
5.19. Spring boot with Async
5.19.1. 最簡單的配置
5.19.2. 非同步綫程池
5.20. Spring boot with csv
5.21. Spring boot with Redis
5.21.1. Spring boot with Redis
5.21.1.1. maven
5.21.1.2. application.properties
5.21.1.3. JUnit
5.21.1.4. Controller
5.21.2. Redis Pub/Sub
5.21.2.1. Redis配置類
5.21.2.2. 訂閲和發佈類
5.21.2.3. 消息發佈演示
5.22. Spring boot with MongoDB
5.22.1. Maven
5.22.2. Application
5.22.3. MongoTemplate
5.22.4. Repository
5.23. Spring boot with MySQL
5.23.1. Maven
5.23.2. Resource
5.23.3. Application
5.23.4. JdbcTemplate
5.23.5. CrudRepository
5.24. Spring boot with Oracle
5.24.1. Maven
5.24.2. application.properties
5.24.3. Application
5.24.4. CrudRepository
5.24.5. JdbcTemplate
5.24.6. Controller
5.25. Spring boot with PostgreSQL
5.25.1. pom.xml
5.25.2. application.properties
5.25.3. Application
5.25.4. CrudRepository
5.25.5. JdbcTemplate
5.25.6. Controller
5.25.7. Test
5.26. Spring boot with Datasource
5.26.1. Master / Slave 主從資料庫數據源配置
5.26.1.1. application.properties
5.26.1.2. 配置主從數據源
5.26.1.3. 選擇數據源
5.26.2. 多數據源配置
5.26.3. JPA 多數據源
5.26.4. Connection and Statement Pooling
5.26.4.1. org.apache.tomcat.jdbc.pool.DataSource
5.26.4.2. druid
5.26.4.3. c3p0 - JDBC3 Connection and Statement Pooling
5.26.4.4. dbcp2
5.26.4.5. bonecp
5.26.4.6. dbcp2
5.27. Spring boot with Elasticsearch
5.27.1. Maven
5.27.2. Application
5.27.3. application.properties
5.27.4. Domain
5.27.5. ElasticsearchRepository
5.28. Spring boot with Elasticsearch TransportClient
5.28.1. Maven
5.28.2. Application
5.28.3. application.properties
5.28.4. ElasticsearchConfiguration
5.28.5. RestController
5.29. Spring boot with Apache Hive
5.29.1. Maven
5.29.2. application.properties
5.29.3. Configuration
5.29.4. CURD 操作實例
5.30. Spring boot with Phoenix
5.30.1. Maven
5.30.2. application.properties
5.30.3. Configuration
5.31. Spring boot with RabbitMQ(AMQP)
5.31.1. maven
5.31.2. RabbitMQConfig
5.31.3. 生產者
5.31.4. 消費者
5.32. Spring boot with Apache Kafka
5.32.1. 安裝 kafka
5.32.2. maven
5.32.3. Spring boot Application
5.32.4. EnableKafka
5.32.5. KafkaListener
5.32.6. 測試
5.32.7. 完整的發佈訂閲實例
5.32.7.1. Consumer
5.32.7.2. Producer
5.32.7.3. Test
5.32.8. Spring cloud with Kafka
5.32.8.1. Application 主檔案
5.32.8.2. 資源配置檔案
5.32.8.2.1. application.properties
5.32.8.2.2. bootstrap.properties
5.32.8.2.3. Git 倉庫
5.32.8.3. 啟用 kafka
5.32.8.4. 消息發佈主程序
5.33. Spring boot with Scheduling
5.33.1. Application.java
5.33.2. Component
5.33.3. 查看日誌
5.33.4. 計劃任務控制開關
5.33.5. @Scheduled 詳解
5.33.5.1. 每3秒鐘一運行一次
5.33.5.2. 凌晨23點運行
5.33.6. Timer 例子
5.33.7. ScheduledExecutorService 例子
5.34. Spring boot with Swagger
5.34.1. Maven 檔案
5.34.2. SpringApplication
5.34.3. EnableSwagger2
5.34.4. RestController
5.34.5. @Api()
5.34.6. @ApiOperation()
5.34.7. @ApiResponses
5.34.8. @ApiModel 實體類
5.35. Spring boot with lombok
5.35.1. @Builder
5.35.2. @Slf4j 註解
5.36. Spring boot with Docker
5.36.1. 通過 Docker 命令構建鏡像
5.36.1.1. 手工編譯鏡像
5.36.1.2. Dockerfile 放在 src/main/docker/Dockerfile 下
5.36.1.3. 通過參數指定 Springboot 檔案
5.36.1.4. SPRING_PROFILES_ACTIVE 指定配置檔案
5.36.1.5. 推送鏡像到倉庫
5.36.2. 通過 Maven 構建 Docker 鏡像
5.36.2.1. Maven + Dockerfile 方案一
5.36.2.2. Maven + Dockerfile 方案二
5.36.2.3. Maven 不使用 Dockerfile 檔案
5.36.2.4. 推送鏡像
5.36.3. [ERROR] No plugin found for prefix 'dockerfile' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (/Users/neo/.m2/repository), central (https://repo.maven.apache.org/maven2)] -> [Help 1]
5.36.4. curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to localhost:8888
5.37. Spring boot with Docker stack
5.37.1. 編譯 Docker 鏡像
5.37.2.
5.38. Spring boot with Kubernetes
5.38.1. Kubernetes 編排腳本
5.38.2. 部署鏡像
5.39. Spring boot with command line
5.39.1. Maven
5.39.2. CommandLineRunner 例子
5.39.3. ApplicationRunner 例子
5.40. Spring Boot Actuator
5.40.1. Maven 依賴
5.40.2. 與 Spring Boot Actuator 有關的配置
5.40.2.1. 禁用HTTP端點
5.40.2.2. 安全配置
5.40.3. actuator 介面
5.40.4. 健康狀態
5.40.4.1. 健康狀態
5.40.5. 關機
5.40.6. info 配置信息
5.40.7. 計劃任務
5.41. String boot with RestTemplate
5.41.1. RestTemplate Example
5.41.1.1. pom.xml
5.41.1.2. web.xml
5.41.1.3. springframework.xml
5.41.1.4. RestController
5.41.1.5. POJO
5.41.1.6. 在控製器中完整實例
5.41.1.7. 測試
5.41.2. GET 操作
5.41.2.1. 返回字元串
5.41.2.2. 傳遞 GET 參數
5.41.3. POST 操作
5.41.3.1. postForObject
5.41.3.1.1. 傳遞對象
5.41.3.1.2. 傳遞資料結構 MultiValueMap
5.41.3.2. postForEntity
5.41.4. PUT 操作
5.41.5. Delete 操作
5.41.6. 上傳檔案
5.41.7. HTTP Auth
5.41.7.1. Client
5.41.8. PKCS12
5.41.9. Timeout 超時設置
5.41.9.1. JRE 啟動參數設置超時時間
5.41.9.2. RestTemplate timeout with SimpleClientHttpRequestFactory
5.41.9.3. @Configuration 方式
5.42. SpringBootTest
5.42.1. Maven 依賴
5.42.2. 測試類
5.42.2.1. Junit基本註解介紹
5.42.3.
5.42.3.1. Assert.assertEquals 判斷相等
5.42.3.2. Assert.assertTrue
5.42.4. JPA 測試
5.42.5.
5.42.6. Controller單元測試
5.42.7. WebTestClient
5.43. Spring boot with Aop
5.43.1. Aspect
5.43.1.1. Maven
5.43.1.2. Pojo 類
5.43.1.3. Service 類
5.43.1.4. Aspect 類
5.43.1.5. 控製器
5.43.1.6. Application
5.43.1.7. 測試
5.44. Spring boot with starter
5.44.1. 實現 starter
5.44.1.1. Maven pom.xml 依賴包
5.44.1.2. 配置檔案處理
5.44.1.3. 自動配置檔案
5.44.1.4. 啟用 starter 的自定義註解
5.44.2. 引用 starter
5.44.2.1. Maven pom.xml 引入依賴
5.44.2.2. 通過註解配置 starter
5.44.2.3. 測試運行結果
5.45. Spring boot with Grafana
5.45.1. Springboot 整合 InfluxDB
5.45.2. InfluxDB
5.46. Spring Boot with Prometheus
5.46.1. Maven 依賴
5.46.2. application.properties 配置檔案
5.46.3. 啟動類
5.46.4. 測試
5.46.5. 控製器監控
5.46.6. 自定義埋點監控
5.46.6.1. 攔截器
5.46.6.2. 計數器元件
5.46.6.3. 配置類
5.46.6.4. 測試埋點效果
6. Spring MVC
6.1. @EnableWebMvc
6.1.1. CORS 跨域請求
6.1.2. Spring MVC CORS with WebMvcConfigurerAdapter
6.2. @Controller
6.2.1. @RequestMapping
6.2.1.1. @RequestMapping("/")
6.2.1.2. 映射多個URL
6.2.1.3. 匹配通配符
6.2.1.4. headers
6.2.1.5. @GetMapping
6.2.1.6. @PostMapping
6.2.1.7. RequestMapping with Request Parameters - @RequestParam
6.2.1.7.1. HTTP GET
6.2.1.7.2. HTTP POST
6.2.1.7.3. @RequestParam 傳遞特殊字元串
6.2.1.7.4. 傳遞日期參數
6.2.1.7.5. 上傳檔案
6.2.1.7.6. @RequestParam - POST 數組
6.2.2. @RequestBody
6.2.2.1. @RequestBody 傳遞 List
6.2.2.2. 傳遞 Map 數據
6.2.3. @RequestHeader - 獲取 HTTP Header 信息
6.2.3.1. @RequestHeader 從 Http 頭中獲取變數
6.2.4. RequestMapping with Path Variables - @PathVariable
6.2.4.1. URL 參數傳遞
6.2.4.2. 預設值
6.2.4.3. URL 傳遞 Date 類型
6.2.4.4. 處理特殊字元
6.2.4.5. @PathVariable 注意事項
6.2.5. @ModelAttribute
6.2.6. @ResponseBody
6.2.6.1. 直接返回HTML
6.2.7. @ResponseStatus 設置 HTTP 狀態
6.2.8. @CrossOrigin
6.2.8.1. maxAge
6.2.9. @CookieValue - 獲取 Cookie 值
6.2.10. @SessionAttributes
6.2.11. ModelAndView
6.2.11.1. 變數傳遞
6.2.11.2. ModelMap 傳遞多個變數
6.2.11.3. redirect
6.2.11.4. ArrayList
6.2.11.5. HashMap
6.2.11.6. 傳遞對象
6.2.11.7.
6.2.12. HttpServletRequest / HttpServletResponse
6.2.12.1. HttpServletResponse
6.2.12.2. HttpServletRequest
6.3. @RestController
6.3.1. 返回實體
6.3.2. JSON
6.3.3. 處理原始 RAW JSON 數據
6.3.4. 返回 JSON 對象 NULL 專為 "" 字元串
6.3.5. XML
6.3.6. 兼容傳統 json 介面
6.3.7. @PageableDefault 分頁
6.3.8. 上傳檔案
6.4. View
6.4.1. 配置靜態檔案目錄
6.4.2. 添加靜態檔案目錄
6.4.3. Using Spring’s form tag library
6.4.3.1. css
6.4.3.1.1. cssClass
6.4.3.1.2. cssStyle
6.4.3.1.3. cssErrorClass
6.4.3.2. cssClass
6.4.4. Thymeleaf
6.4.4.1. Maven pom.xml
6.4.4.2. Spring 配置
6.4.4.3. controller
6.4.4.4. HTML5 Template
6.4.4.5. thymeleaf 渲染表格
6.4.4.6. URL 連結
6.4.4.7. 拆分字元串
6.4.4.8. 日期格式化
6.4.5. FreeMarker
6.5. Service
6.5.1. Application
6.5.2. 定義介面
6.5.3. 實現介面
6.5.4. 調用 Service
6.5.5. context.getBean 調用 Service
6.6. i18n 國際化
6.6.1. 在 appliction.properties 中配置啟用 i18n
6.6.2. 創建語言包檔案
6.6.3. 控製器重引用語言包
6.6.4. 參數傳遞
6.7. 校驗器(Validator)
6.7.1. 常規用法
6.7.1.1. 定義校驗器
6.7.1.2. 獲取 BindingResult 結果
6.7.1.3. 測試校驗效果
6.7.2. 自定義註解
6.7.2.1. 定義校驗器註解介面
6.7.2.2. 實現介面
6.7.2.3. 註解用法
6.7.2.4. 測試註解
6.8. Interceptor
6.8.1. WebMvcConfigurerAdapter
6.8.2. HandlerInterceptor
6.9. FAQ
6.9.1. o.s.web.servlet.PageNotFound
6.9.2. HTTP Status 500 - Handler processing failed; nested exception is java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/core/Config
6.9.3. 同時使用 Thymeleaf 與 JSP
6.9.4. 排除靜態內容
6.9.5. HTTP Status 406
6.9.6. Caused by: java.lang.IllegalArgumentException: Not a managed type: class common.domain.Article
6.9.7. {"error":"unauthorized","error_description":"Full authentication is required to access this resource"}
7. WebFlux framework
7.1. Getting Started
7.1.1. Maven
7.1.2. Application
7.1.3. RestController
7.1.4. 測試
7.2. WebFlux Router
7.2.1. Component 原件
7.2.2. 路由配置
7.2.3. Thymeleaf
7.2.3.1. 模板引擎 Thymeleaf 依賴
7.2.3.2. application.properties 相關的配置
7.2.3.3.
7.2.3.4. Tymeleaf 視圖
7.2.4. Webflux Redis
7.2.4.1. Maven Redis 依賴
7.2.4.2. Redis 配置
7.2.4.3. Config
7.2.4.4. Service
7.2.4.5.
7.2.5. Webflux Mongdb
7.2.5.1. Maven 依賴
7.2.5.2. Repository
7.2.5.3. Service
7.2.5.4. 控製器
7.2.6. SSE
7.2.7. Mono/Flux
8. Spring Data
8.1. Jackson
8.1.1. @JsonIgnore 返回json是不含有該欄位
8.1.2. @JsonFormat 格式化 json 時間格式
8.1.2.1. 日期格式化
8.1.2.2. 時區
8.1.2.3. 枚舉
8.1.2.4. 枚舉
8.1.3. @JsonComponent
8.2. Spring Data with Redis
8.2.1. 整合 Redis XML 方式
8.2.1.1. pom.xml
8.2.1.2. springframework-servlet.xml
8.2.1.3. Controller
8.2.1.4. index.jsp
8.2.1.5. 測試
8.2.2. RedisTemplate
8.2.2.1. stringRedisTemplate 基本用法
8.2.2.2. 設置緩存時間
8.2.2.3. 字元串截取
8.2.2.4. 追加字元串
8.2.2.5. 設置鍵的字元串值並返回其舊值
8.2.2.6. increment
8.2.2.7. 刪除 key
8.2.2.8. 返回字元串長度
8.2.2.9. 如果key不存便緩存。
8.2.2.10. 緩存多個值 /獲取多個值 multiSet / multiGet
8.2.2.11. List
8.2.2.11.1. rightPush
8.2.2.11.2. rightPushAll
8.2.2.11.3. rightPushIfPresent
8.2.2.11.4. leftPush
8.2.2.11.5. leftPushAll
8.2.2.11.6. range
8.2.2.12. SET 數據類型
8.2.2.12.1. 返回集合中的所有成員
8.2.2.12.2. 取出一個成員
8.2.2.12.3. 隨機獲取無序集合中的一個元素
8.2.2.12.4. 隨機獲取 n 個成員(存在重複數據)
8.2.2.12.5. 隨機獲取 n 個不重複成員
8.2.2.12.6. 在兩個 SET 間移動數據
8.2.2.12.7. 成員刪除
8.2.2.12.8. 返回集合數量
8.2.2.12.9. 判斷元素是否在集合成員中
8.2.2.12.10. 對比兩個集合求交集
8.2.2.12.11. 對比兩個集合求交集,然後存儲到新的 key 中
8.2.2.12.12. 合併兩個集合,並去處重複數據
8.2.2.12.13. 合併兩個集合去重複後保存到新的 key 中
8.2.2.12.14. 計算兩個合集的差集
8.2.2.12.15. 計算兩個合集的差集,然後保存到新的 key 中
8.2.2.12.16. 遍歷 SET 集合
8.2.2.13. 有序的 set 集合
8.2.2.14. Hash
8.2.2.14.1. put
8.2.2.14.2. putAll
8.2.2.14.3. 從鍵中的哈希獲取給定hashKey的值
8.2.2.14.4. delete
8.2.2.14.5. 確定哈希hashKey是否存在
8.2.2.14.6. 從哈希中獲取指定的多個 hashKey 的值
8.2.2.14.7. 只有hashKey不存在時才能添加值
8.2.2.14.8. 獲取整個Hash
8.2.2.14.9. 獲取所有key
8.2.2.14.10. 通過 hashKey 獲取所有值
8.2.2.14.11. 值加法操作
8.2.2.14.12. 遍歷 Hash 表
8.2.2.15. 過期時間未執行
8.2.2.16. setBit / getBit 二進制位操作
8.2.2.17. 存儲 Json 對象
8.2.2.17.1. 整合 RedisTemplate 定義新類 JsonRedisTemplate
8.2.2.17.2. 配置 Redis
8.2.2.17.3. 測試
8.2.3. Spring Data Redis - Repository Examples
8.2.3.1. @EnableRedisRepositories 啟動 Redis 倉庫
8.2.3.2. 定義 Domain 類
8.2.3.3. Repository 介面
8.2.3.4. 測試代碼
8.3. Spring Data with MongoDB
8.3.1. Example Spring Data MongoDB
8.3.1.1. pom.xml
8.3.1.2. springframework-servlet.xml
8.3.1.3. POJO
8.3.1.4. Controller
8.3.1.5. 查看測試結果
8.3.1.6. 條件查詢
8.3.2. @Document
8.3.2.1. 指定表名
8.3.2.2. @Id
8.3.2.3. @Version
8.3.2.4. @Field 定義欄位名
8.3.2.5. @Indexed
8.3.2.5.1. 普通索引
8.3.2.5.2. 唯一索引
8.3.2.5.3. 索引排序方式
8.3.2.5.4. 稀疏索引
8.3.2.5.5. 索引過期時間設置
8.3.2.6. @CompoundIndex 復合索引
8.3.2.6.1. 普通復合索引
8.3.2.6.2. 唯一復合索引
8.3.2.7. @TextIndexed
8.3.2.8. @GeoSpatialIndex 地理位置索引
8.3.2.9. @Transient 丟棄數據,不存到 mongodb
8.3.2.10. @DBRef 做外外鍵引用
8.3.2.10.1. Article 類
8.3.2.10.2. Hypermedia 類
8.3.2.10.3. MongoRepository
8.3.2.10.4. RestController
8.3.2.10.5. 運行結果
8.3.2.11. @DateTimeFormat
8.3.2.12. @NumberFormat
8.3.2.13. 在 @Document 中使用 Enum 類型
8.3.2.14. 在 @Document 中定義資料結構 List/Map
8.3.2.15. GeoJson 數據類型
8.3.3. MongoRepository
8.3.3.1. 掃瞄倉庫介面
8.3.3.2. findAll()
8.3.3.3. deleteAll()
8.3.3.4. save()
8.3.3.5. count()
8.3.3.6. exists() 判斷是否存在
8.3.3.7. existsById()
8.3.3.8. findByXXXX
8.3.3.9. findAll with OrderBy
8.3.3.9.1. order by boolean 布爾型數據排序
8.3.3.10. findAll with Sort
8.3.3.11. FindAll with Pageable
8.3.3.11.1. PageRequest - springboot 1.x 舊版本
8.3.3.12. StartingWith 和 EndingWith
8.3.3.13. Between
8.3.3.14. Before / After
8.3.3.15. @Query
8.3.4. mongoTemplate
8.3.4.1. Save 保存
8.3.4.2. Insert
8.3.4.3. updateFirst 修改符合條件第一條記錄
8.3.4.4. updateMulti 修改符合條件的所有
8.3.4.5. 查找並保存
8.3.4.6. upsert - 修改符合條件時如果不存在則添加
8.3.4.7. 刪除
8.3.4.8. 查找一條數據
8.3.4.9. 查找所有數據
8.3.4.10. Query
8.3.4.10.1. 翻頁
8.3.4.10.2. between
8.3.4.11. Criteria
8.3.4.11.1. is
8.3.4.11.2. Regex 正則表達式搜索
8.3.4.11.3. lt 和 gt
8.3.4.11.4. exists()
8.3.4.11.5. 包含
8.3.4.12. Update
8.3.4.12.1. set
8.3.4.12.2. 追加數據
8.3.4.12.3. 更新數據
8.3.4.12.4. 刪除數據
8.3.4.12.5. inc
8.3.4.12.6. update.addToSet
8.3.4.13. BasicUpdate
8.3.4.14. Sort
8.3.4.15. Query + PageRequest
8.3.4.16. newAggregation
8.3.4.17. 創建索引
8.3.4.18. 子對象操作
8.3.4.18.1. List 類型
8.3.5. GeoJson 反序列化
8.3.6. FAQ
8.3.6.1. location object expected, location array not in correct format; nested exception is com.mongodb.MongoWriteException: location object expected, location array not in correct format
8.4. Spring Data with MySQL
8.4.1. 選擇資料庫表引擎
8.4.2. 聲明實體
8.4.2.1. @Entity 聲明實體
8.4.2.2. @Table 定義表名
8.4.2.2.1. catalog
8.4.2.2.2. schema
8.4.2.2.3. uniqueConstraints
8.4.2.3. @Id 定義主鍵
8.4.2.4. @Column 定義欄位
8.4.2.4.1. 欄位長度
8.4.2.4.2. 浮點型
8.4.2.4.3. 創建於更新控制
8.4.2.4.4. TEXT 類型
8.4.2.4.5. 整形數據類型
8.4.2.5. @Lob 註解屬性將被持久化為 Blog 或 Clob 類型
8.4.2.6. @NotNull 不能為空聲明
8.4.2.7. @Temporal 日期定義
8.4.2.8. @DateTimeFormat 處理日期時間格式
8.4.2.9. 預設時間規則
8.4.2.9.1. CreatedDate
8.4.2.9.2. 與時間日期有關的 hibernate 註解
8.4.2.9.3. 資料庫級別的預設創建日期時間定義
8.4.2.9.4. 資料庫級別的預設創建日期與更新時間定義
8.4.2.9.5. 最後修改時間
8.4.2.10. Enum 枚舉數據類型
8.4.2.10.1. 實體中處理 enum 類型
8.4.2.10.2. 資料庫枚舉類型
8.4.2.11. SET 資料結構
8.4.2.12. JSON 數據類型
8.4.2.13. 索引
8.4.2.13.1. 普通索引
8.4.2.13.2. 唯一索引
8.4.2.13.3. 復合索引
8.4.2.14. 創建復合主鍵
8.4.2.15. @JoinColumn
8.4.2.16. @OneToOne
8.4.2.17. OneToMany 一對多
8.4.2.18. ManyToMany 多對多
8.4.2.19. 外鍵級聯刪除
8.4.2.20. 其他
8.4.2.20.1. Cascade
8.4.2.20.2. @JsonIgnore
8.4.2.20.3. @EnableJpaAuditing 開啟 JPA 審計功能
8.4.3. 實體繼承
8.4.4. Repository
8.4.4.1. CrudRepository
8.4.4.2. JpaRepository
8.4.4.3. findByXXX
8.4.4.3.1. 傳 Boolean 參數
8.4.4.3.2. Eunm 傳遞枚舉參數
8.4.4.4. count 操作
8.4.4.5. OrderBy
8.4.4.6. GreaterThan
8.4.4.7. PageRequest 翻頁操作
8.4.4.7.1. PageRequest.of
8.4.4.7.2. Pageable
8.4.4.8. Sort 排序操作操作
8.4.4.9. Query
8.4.4.9.1. 參數傳遞
8.4.4.9.2. 原生 SQL
8.4.4.9.3. @Query 與 Pageagble
8.4.4.9.4. 返回指定欄位
8.4.4.9.5. 返回指定的模型
8.4.4.10. @Transactional
8.4.4.10.1. 刪除更新需要 @Transactional 註解
8.4.4.10.2. 回滾操作
8.4.4.11. 鎖 @Lock
8.5. EntityManager
8.6. Spring Data with JdbcTemplate
8.6.1. execute
8.6.2. queryForInt
8.6.3. queryForLong
8.6.4. queryForObject
8.6.4.1. 返回整形與字元型
8.6.4.2. 查詢 Double 類型資料庫
8.6.4.3. 返回日期
8.6.4.4. 返回結果集
8.6.4.5. 通過 "?" 向SQL傳遞參數
8.6.4.6. RowMapper 記錄映射
8.6.5. queryForList
8.6.5.1. Iterator 用法
8.6.5.2. for 循環
8.6.5.3. forEach 用法
8.6.6. queryForMap
8.6.7. query
8.6.7.1. ResultSet
8.6.7.2. ResultSetExtractor
8.6.7.3. RowMapper
8.6.8. queryForRowSet
8.6.9. update
8.6.10.
8.6.11. 實例參考
8.6.11.1. 參數傳遞技巧
8.7. Spring Data with Elasticsearch
8.7.1. 內嵌 Elasticsearch
8.7.1.1. Maven
8.7.1.2. src/main/resources/application.properties
8.7.1.3. Domain Class
8.7.1.4. ElasticsearchRepository
8.7.1.5. SearchRestController
8.7.1.6. 測試
8.7.2. 集群模式
8.7.3. Document
8.7.4. Elasticsearch 刪除操作
8.7.5. FAQ
8.7.5.1. java.lang.IllegalStateException: Received message from unsupported version: [2.0.0] minimal compatible version is: [5.0.0]
8.8. Spring Data FAQ
8.8.1. No identifier specified for entity
8.8.2. Oracle Date 類型顯示日期和時間
8.8.3. java.lang.ClassCastException: java.lang.Long cannot be cast to java.lang.Integer
8.8.4. Executing an update/delete query; nested exception is javax.persistence.TransactionRequiredException: Executing an update/delete query
9. Spring Security
9.1. Spring Security with HTTP Auth
9.1.1. 預設配置
9.1.2. 設置用戶名和密碼
9.1.3. 禁用 Security
9.2. Spring boot with Spring security
9.2.1. Maven
9.2.2. Reource
9.2.3. Application
9.2.4. WebSecurityConfigurer
9.2.5. RestController
9.2.6. 測試
9.2.7. Spring + Security + MongoDB
9.2.7.1. Account
9.2.7.2. AccountRepository
9.2.7.3. WebSecurityConfiguration
9.3. Spring Boot with Web Security
9.3.1. EnableWebSecurity
9.3.2. Web靜態資源
9.3.3. 正則匹配
9.3.4. 登陸頁面,失敗頁面,登陸中頁面
9.3.5. CORS
9.3.6. X-Frame-Options 安全
9.4. 訪問控制列表(Access Control List,ACL)
9.4.1. antMatchers
9.4.2. HTTP Auth
9.4.3. Rest
9.4.4. hasRole
9.4.5. hasAnyRole()
9.4.6. withUser
9.4.6.1. 添加用戶
9.4.6.2. 添加多個用戶,並指定角色
9.4.6.3. 獲取當前用戶
9.5. Spring Authorization Server
9.5.1. Oauth2 協議
9.5.1.1. token
9.5.1.2. grant_type
9.5.1.3. 授權碼授權模式(Authorization Code Grant)
9.5.1.4. 密碼模式(Resource Owner Password Credentials Grant)
9.5.1.5. 客戶端憑證模式(Client Credentials Grant)
9.5.1.6. 刷新 TOKEN 方式
9.5.2. Maven 依賴
9.5.3. Spring cloud with Oauth2
9.5.3.1. authorization_code
9.5.3.1.1. 驗證伺服器器
9.5.3.2. Spring boot with Oauth2 - Password
9.5.3.2.1. Maven
9.5.3.2.2. Password tools
9.5.3.2.3. Server
9.5.3.2.4. Spring boot with Oauth2 RestTemplate
9.5.3.3. Spring boot with Oauth2 jwt
9.5.3.3.1. Maven
9.5.3.3.2. Authorization Server
9.5.3.3.3. Resource Server
9.5.3.3.4. Web Security
9.5.3.3.5. 插入數據
9.5.3.3.6. 使用 CURL 測試 JWT
9.5.3.3.7. 測試 Shell
9.5.3.3.8. refresh_token
9.5.3.4. Spring boot with Oauth2 jwt 非對稱證書
9.5.3.4.1. 創建證書
9.5.3.4.2. Authorization Server
9.5.3.4.3. Resource Server
9.5.3.5. Apple iOS 訪問 Oauth2
9.5.3.6. Oauth2 客戶端
9.5.3.6.1.
9.5.3.6.2. application.yml
9.5.3.6.3. SpringApplication
9.5.3.6.4. WebSecurityConfigurer
9.5.3.6.5. TestController
9.5.3.7. Android Oauth2 + Jwt example
9.5.3.8. RestTemplate 使用 HttpClient
9.5.3.8.1. Maven
9.5.3.8.2. SpringBootApplication
9.5.3.8.3. ClientRestController
9.5.3.8.4. Test
9.5.3.9. 自簽名證書信任問題
9.5.3.10. Principal
9.5.3.11. SecurityContextHolder 對象
9.5.3.12. 資源伺服器配置
9.5.3.12.1. access()
9.5.3.13. Client
9.5.3.13.1. Overriding Spring Boot 2.0 Auto-configuration
9.5.3.14. Oauth2 常見問題
9.5.3.14.1. 修改 /oauth/token 路徑
9.5.3.14.2. password 認證方式靜態配置用戶列表
10. Spring Cloud
10.1. Spring Cloud Config
10.1.1. Maven 項目 pom.xml 檔案
10.1.2. Server
10.1.2.1. Maven config 模組
10.1.2.2. Application
10.1.2.3. application.properties
10.1.2.4. Git 倉庫
10.1.2.5. 測試伺服器
10.1.3. Client
10.1.3.1. Maven pom.xml
10.1.3.2. Application
10.1.3.3. bootstrap.properties
10.1.3.4. 測試 client
10.1.4. Config 高級配置
10.1.4.1. 倉庫配置
10.1.4.1.1. 分支
10.1.4.1.2. basedir
10.1.4.1.3. HTTP Auth
10.1.4.1.4. 本地git倉庫
10.1.4.1.5. native 本地配置
10.1.4.2. Config server 用戶認證
10.1.4.2.1. Server 配置
10.1.4.2.2. Client 配置
10.1.4.3. 加密敏感數據
10.1.4.4. Spring Cloud Config JDBC Backend
10.1.4.4.1. Maven pom.xml
10.1.4.4.2. 資料庫表結構
10.1.4.4.3. Config 伺服器
10.1.4.4.4. application.properties
10.1.5. Old
10.1.5.1. Server (Camden.SR5)
10.1.5.2. Client (Camden.SR5)
10.2. Spring Cloud Consol
10.2.1. Spring Cloud Consul 配置
10.2.2. Maven 父項目
10.2.3. Consul 服務生產者
10.2.3.1. Maven
10.2.3.2. application.properties
10.2.3.3. SpringApplication
10.2.3.4. TestController
10.2.4. Consul 服務消費者
10.2.4.1. Maven
10.2.4.2. application.properties
10.2.4.3. SpringApplication
10.2.4.4. TestController
10.2.5. Openfeign
10.2.5.1. Maven
10.2.5.2. application.properties
10.2.5.3. SpringApplication
10.2.5.4. Feign 介面
10.2.5.5. TestController
10.3. Spring Cloud Netflix
10.3.1. Eureka Server
10.3.1.1. Maven
10.3.1.2. Application
10.3.1.3. application.properties
10.3.1.4. 檢查註冊伺服器
10.3.2. Eureka Client
10.3.2.1. Maven
10.3.2.2. Application
10.3.2.3. RestController
10.3.2.4. application.properties
10.3.2.5. 測試
10.3.3. Feign client
10.3.3.1. Maven
10.3.3.2. Application
10.3.3.3. interface
10.3.3.4. application.properties
10.3.3.5. 測試
10.3.3.6. fallback
10.3.4. 為 Eureka Server 增加用戶認證
10.3.4.1. Maven
10.3.4.2. application.properties
10.3.4.3. Eureka Client
10.3.4.4. Feign Client
10.3.5. Eureka 配置項
10.3.5.1. /eureka/apps
10.3.5.2. Eureka instance 配置項
10.3.5.3. Eureka client 配置項
10.3.5.4. Eureka Server配置項
10.3.6. ribbon
10.3.6.1.
10.3.6.2. LoadBalancerClient 實例
10.3.6.2.1. application.properties
10.3.6.2.2. LoadBalancerClient 獲取伺服器列表
10.3.6.3. Ribbon 相關配置
10.3.6.3.1. 內置負載均衡策略
10.3.7. 獲取 EurekaClient 信息
10.3.8. Zuul
10.3.8.1. Maven
10.3.8.2. EnableZuulProxy
10.3.8.3. application.yml
10.3.8.4. 負載均衡配置
10.4. Openfeign
10.4.1. Openfeign 掃瞄包配置
10.4.2. 用戶認證
10.4.3. 配置連接方式
10.4.4.
10.5. Spring Cloud Gateway
10.5.1. Gateway 例子
10.5.1.1. Maven
10.5.1.2. SpringApplication
10.5.1.3. application.yml
10.5.1.4. RouteLocator 方式
10.5.2. 路由配置
10.5.2.1. 轉發操作
10.5.2.2. URL 參數
10.6. Spring Cloud Stream
10.7. Spring Cloud Bus
10.8. Spring Cloud Sleuth
10.9. Spring Cloud 相關的 application.properties 配置
10.9.1. 啟用或禁用 bootstrap
10.9.2. bootstrap.properties 配置檔案
10.10. Spring Cloud with Kubernetes
10.10.1. Config
10.10.1.1. Maven 依賴
10.10.1.2. Spring Cloud 配置檔案
10.10.1.3. 程序檔案
10.10.1.3.1. SpringBootApplication 啟動檔案
10.10.1.3.2. 配置類
10.10.1.3.3. 控製器
10.10.1.4. Kubernetes 編排腳本
10.10.1.5. 測試
10.10.2. 註冊發現
10.10.2.1. Maven 父項目
10.10.2.2. provider
10.10.2.2.1. Maven 依賴
10.10.2.2.2. Springboot 啟動類
10.10.2.2.3. 控製器
10.10.2.2.4. application.properties 配置檔案
10.10.2.2.5. Kubernetes provider 編排腳本
10.10.2.3. consumer
10.10.2.3.1. Maven 依賴
10.10.2.3.2. Springboot 啟動類
10.10.2.3.3. 控製器
10.10.2.3.4. FeignClient 介面
10.10.2.3.5. application.properties 配置檔案
10.10.2.3.6. Kubernetes consumer 編排腳本
10.10.2.4. 測試
10.10.2.5.
10.11. FAQ
10.11.1. Cannot execute request on any known server
10.11.2. @EnableDiscoveryClient與@EnableEurekaClient 區別
10.11.3. Feign請求超時
10.11.4. 已停止的微服務節點註銷慢或不註銷
10.11.5. Feign 啟動出錯 PathVariable annotation was empty on param 0.
10.11.6. Feign 提示 Consider defining a bean of type 'common.feign.Cms' in your configuration.
10.11.7. Load balancer does not have available server for client
10.11.8. Eureka Client (Dalston.SR1)
10.11.8.1. Maven
10.11.8.2. Application
10.11.8.3. RestController
10.11.8.4. application.properties
10.11.8.5. 測試
10.11.9. Config Server(1.3.1.RELEASE)
10.11.9.1. Server
10.11.9.1.1. Maven
10.11.9.1.2. Application
10.11.9.1.3. application.properties
10.11.9.1.4. Git 倉庫
10.11.9.1.5. 測試伺服器
10.11.9.2. Client
10.11.9.2.1. Maven pom.xml
10.11.9.2.2. Application
10.11.9.2.3. bootstrap.properties
10.11.9.2.4. 測試 client
11. Tomcat Spring 運行環境
11.1. Maven
11.2. Spring Boot Quick start
11.2.1. 創建項目
11.2.2. pom.xml
11.2.3. Controller
11.3. Spring MVC configuration
11.4. Tomcat
11.5. 整合 Mybatis
11.5.1. pom.xml
11.5.2. properties
11.5.3. dataSource
11.5.4. SqlSessionFactory
11.5.5. Mapper 掃瞄
11.5.6. Mapper 單一class映射
11.5.7. Service
11.5.8. 測試實例
12. Miscellaneous
12.1. Object to Json
12.2. Json To Object
13. FAQ
13.1. org.hibernate.dialect.Oracle10gDialect does not support identity key generation
13.2. No identifier specified for entity
13.3. Could not read document: Invalid UTF-8 middle byte 0xd0
13.4. java.sql.SQLRecoverableException: IO Error: The Network Adapter could not establish the connection
13.5. Field javaMailSender in cn.netkiller.rest.EmailRestController required a bean of type 'org.springframework.mail.javamail.JavaMailSender' that could not be found.
13.6. org.postgresql.util.PSQLException: FATAL: no pg_hba.conf entry for host "172.16.0.3", user "test", database "test ", SSL off
13.7. Spring boot 怎樣顯示執行的SQL語句
13.8. Cannot determine embedded database driver class for database type NONE
13.9. Spring boot / Spring cloud 時區差8個小時
13.10. @Value 取不到值
13.11. Spring boot 2.1.0
13.12. Field authenticationManager in cn.netkiller.oauth2.config.AuthorizationServerConfigurer required a bean of type 'org.springframework.security.authentication.AuthenticationManager' that could not be found.
13.13. 打印 Bean 信息