Skip to content

Latest commit

 

History

History
115 lines (58 loc) · 8 KB

Spring-List.md

File metadata and controls

115 lines (58 loc) · 8 KB

返回目录

Spring & Spring Boot List

Resource

Books

Courses

  • 2018-The "REST with Spring" Classes #Course#: This project is a collection of small and focused tutorials - each covering a single and well defined area of development in the Java ecosystem. A strong focus of these is, of course, the Spring Framework - Spring, Spring Boot and Spring Securiyt. In additional to Spring, the following technologies are in focus: core Java, Jackson, HttpClient, Guava.

Series

  • 2017-Sprint Boot 完整教程 #Series#: 从功能性的角度开始讲解 Spring Boot 的用户,层层递进。全教程分为两个等级初级和高级,完美讲述了 Spring Boot 在开发过程中的使用。

Spring Boot

Controller | 请求处理

Swagger

Service | 服务

AOP

Storage | 存储

  • 2018-Spring JDBC: In this article, we’ll go through practical use cases of the Spring JDBC module.

Test | 测试

Production | 发布到生产环境

Spring Security

  • 2018-Security with Spring #Series#: The Security with Spring tutorials focus, as you'd expect, on Spring Security. Get started with the Registration series if you're interested in building a registration flow, and understanding some of the frameworks basics. Then, explore the topics you're most interested in, related to security. Finally, have a look at some of the more advanced topics, such as the OAuth support.

Spring Security 5

  • Spring Security Series #Series#: With the latest Spring Security release, a lot has changed. One of those changes is how we can handle password encoding in our applications.

JWT

  • 2017-Spring Boot Security Jwt Authentication: In this post we will be securing our REST APIs with JWT(JSOn Web Token) authentication. We will be using spring boot maven based configuration to develop and secure our APIs with seperate API for signup and generate token.

Spring Internals

  • 2017-基于 Netty 的 Spring Boot 内置 Servlet 容器的实现 #Series#: Spring Boot 有 Tomcat、Jetty 和 undertow 三种内置 Servlet 容器,默认使用 Tomcat。一般来说已经够用了,但当 Spring Boot 用于高并发微服务的时候,可能并不够用,而且 tomcat 的资源占用在这种情况下说不上轻量化了。于是萌生了自己实现一个 Spring Boot 的 Netty Servlet 容器的想法。

IoC

  • 2018-徒手撸框架–实现 IoC: Spring 作为 J2ee 开发事实上的标准,是每个 Java 开发人员都需要了解的框架。但是 Spring 的 IoC 和 Aop 的特性,对于初级的 Java 开发人员来说还是比较难于理解的。所以我就想写一系列的文章给大家讲解这些特性。从而能够进一步深入了解 Spring 框架。