├── .github └── workflows │ └── linter.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE └── README.md /.github/workflows/linter.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | name: Lint Code Base 4 | 5 | on: 6 | push: 7 | branches-ignore: [main] 8 | pull_request: 9 | branches: [main] 10 | 11 | jobs: 12 | linter: 13 | name: Lint Code Base 14 | runs-on: ubuntu-latest 15 | 16 | steps: 17 | - name: Checkout code 18 | uses: actions/checkout@v3 19 | 20 | - name: Lint Code Base 21 | uses: github/super-linter@v4 22 | env: 23 | DEFAULT_BRANCH: main 24 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 25 | VALIDATE_NATURAL_LANGUAGE: false 26 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################################ 2 | ############ MAC ############### 3 | ################################ 4 | 5 | # General 6 | .DS_Store 7 | .AppleDouble 8 | .LSOverride 9 | 10 | # Icon must end with two \r 11 | Icon 12 | 13 | # Thumbnails 14 | ._* 15 | 16 | # Files that might appear in the root of a volume 17 | .DocumentRevisions-V100 18 | .fseventsd 19 | .Spotlight-V100 20 | .TemporaryItems 21 | .Trashes 22 | .VolumeIcon.icns 23 | .com.apple.timemachine.donotpresent 24 | 25 | # Directories potentially created on remote AFP share 26 | .AppleDB 27 | .AppleDesktop 28 | Network Trash Folder 29 | Temporary Items 30 | .apdisk 31 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | ## Adding to this list 4 | 5 | Please ensure your pull request adheres to the following guidelines: 6 | 7 | - Make an individual pull request for each suggestion. 8 | - Use the following format: `[Resource Name](link) - Short description.` 9 | - Don't repeat the resource name in the description. 10 | - Link additions should be added in alphabetical order to the relevant category. 11 | - Titles should be [capitalized](http://grammar.yourdictionary.com/capitalization/rules-for-capitalization-in-titles.html). 12 | - Check your spelling and grammar. 13 | - New categories or improvements to the existing categorization are welcome. 14 | - The pull request and commit should have a useful title. 15 | 16 | Thank you for your suggestions! 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🍃Awesome Spring 2 | 3 | [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) [![GitHub Super-Linter](https://github.com/ThomasVitale/awesome-spring/workflows/Lint%20Code%20Base/badge.svg)](https://github.com/marketplace/actions/super-linter) 4 | 5 | A curated list of awesome books, tutorials, courses, and resources for the Spring framework ecosystem. 6 | 7 | If you're new to Spring, start with watching the [What is Spring?](https://www.youtube.com/watch?v=Spzug_SjJnM) video. 8 | 9 | ## Contents 10 | 11 | * [Books](#books) 12 | * [Courses](#courses) 13 | * [Podcasts](#podcasts) 14 | * [Events](#events) 15 | * [Educational Projects](#educational-github-projects) 16 | * [Other Resources](#other-resources) 17 | * [Blogs](#blogs) 18 | * [YouTube Channels and Playlists](#youtube-channels-and-playlists) 19 | * [Contributing](#contributing) 20 | 21 | ## Books 22 | 23 | * [Cloud Native Java](https://www.oreilly.com/library/view/cloud-native-java/9781449374631/) (Josh Long), 2017 - Learn how to build scalable & resilient cloud native applications with Spring Boot, Spring Cloud, and Cloud Foundry. 24 | * [Cloud Native Spring in Action](https://www.manning.com/books/cloud-native-spring-in-action) (Thomas Vitale), 2022 - A hands-on guide to cloud native application development using Spring Boot, Spring Cloud, Docker, and Kubernetes. 25 | * [Hacking with Spring Boot 2.3: Reactive Edition](https://www.amazon.com/Hacking-Spring-Boot-2-3-Reactive-ebook/dp/B086722L4L) (Greg L. Turnquist), 2020 - Learn the latest Spring features to build modern, reactive web applications with Spring Boot. 26 | * [Java Persistence with Spring Data and Hibernate](https://www.manning.com/books/java-persistence-with-spring-data-and-hibernate), 2023 - Master Java persistence using the industry-leading tools Spring Data and Hibernate. 27 | * [Practical Guide to Building an API Back End with Spring Boot](https://www.infoq.com/minibooks/spring-boot-building-api-backend) (Wim Deblauwe), 2018 - Learn how to build an API backend using Spring Boot, Spring Data, and Spring Security. 28 | * [Reactive Spring](https://leanpub.com/reactive-spring) v1.5 (Josh Long), 2022 - An introduction to reactive programming and its implementation in the Spring ecosystem. 29 | * [Spring in Action](https://www.manning.com/books/spring-in-action-sixth-edition) 6th edition (Craig Walls ), 2022 - A guide through Spring’s core features, reactive programming, microservices, service discovery, RESTful APIs, deployment, and best practices. 30 | * [Spring Boot: Up & Running](https://learning.oreilly.com/library/view/spring-boot-up/9781492076971) (Mark Heckler), 2021 - A guide through Spring Boot’s architecture and approach, along with topics such as debugging, testing, and deployment. 31 | * [Spring Boot in Practice](https://www.manning.com/books/spring-boot-in-practice) (Somnath Musib), 2022 - This practical guide presents dozens of relevant scenarios in a convenient problem-solution-discussion format. 32 | * [Spring Microservices in Action](https://www.manning.com/books/spring-microservices-in-action-second-edition) 2nd edition (John Carnell, Illary Huaylupo Sánchez), 2021 - A book about build microservice-based applications using Java and Spring. 33 | * [Spring Security in Action](https://www.manning.com/books/spring-security-in-action) 2nd edition (Laurențiu Spilcă), 2023 - Learn how to secure web applications from the most common threats using Spring Security. 34 | * [Spring Start Here](https://www.manning.com/books/spring-start-here) (Laurențiu Spilcă), 2021 - It introduces you to Java development with Spring by concentrating on core concepts like the Spring context, AOP, bean configuration, Spring MVC, and data persistence. 35 | * [Stratospheric](https://stratospheric.dev) (Björn Wilmsmann, Philip Riecks, Tom Hombergs), 2022 - All you need to know to get a Spring Boot application into production with AWS. 36 | * [Taming Thymeleaf](https://www.wimdeblauwe.com/books/taming-thymeleaf/) (Wim Deblauwe), 2021 - Practical guide about building web applications with Spring Boot and Thymeleaf. 37 | 38 | ## Courses 39 | 40 | * [Cloud Native Java with Kubernetes](https://learning.oreilly.com/videos/cloud-native-java/9780137834051) 2nd edition (Josh Long) - It covers how high-performance organizations are addressing the requirements of distribution with Spring Boot, Spring Cloud, and Kubernetes to be more resilient, reliable, robust, and scalable. 41 | * [From Zero to Production with Spring Boot and AWS](https://stratospheric.dev/online-course/) - A hands-on online course to learn all you need to know to get a Spring Boot application into production with AWS. 42 | * [Reactive Spring Boot](https://learning.oreilly.com/videos/reactive-spring-boot/9780137831463) 3rd edition (Josh Long) - It introduces key concepts of reactive programming and examines different aspects of the Spring ecosystem that lend themselves to the functional and reactive style of programming. 43 | * [Testing Spring Boot Applications Masterclass](https://rieckpil.de/courses/testing-spring-boot-applications-masterclass/) - Learn about testing Spring Boot applications and make the most of the testing libraries like JUnit 5, Mockito, Selenium, WireMock, Testcontainers, LocalStack, Awaitility while using real-world application examples. 44 | * [The Confident Spring Professional](https://www.marcobehler.com/courses/spring-professional) - Built to give you a comprehensive understanding of the Spring ecosystem, including Spring Framework, Spring MVC, Spring Data, and Spring Boot. 45 | 46 | ## Podcasts 47 | 48 | * [Bootiful Podcast](http://bootifulpodcast.fm/) - A "celebration of the real heroes that drive ecosystems", hosted by the Spring developer advocate Josh Long. 49 | 50 | ## Events 51 | 52 | * [Spring I/O](https://springio.net) - The leading european conference focused on the Spring Framework ecosystem. 53 | * [Spring One](https://springone.io) - A two-day conference gathering developers, cloud engineers, and leaders to share knowledge about the Spring Framework ecosystem. 54 | 55 | ## Educational GitHub Projects 56 | 57 | * [Cloud Native Workshop](https://github.com/joshlong/cloud-native-workshop), Josh Long - Workshop materials about Spring Boot, Spring Cloud and Cloud Foundry. 58 | * [Getting started with Spring Cloud](https://github.com/TYsewyn/Getting-Started-with-Spring-Cloud), Tim Ysewyn - Workshop materials about Spring Boot, Spring Cloud and Kubernetes. 59 | * [Sample Credit Card Application with Spring Cloud ecosystem](https://github.com/OlgaMaciaszek/spring-cloud-netflix-demo), Olga Maciaszek-Sharma - Demo project showcasing the new Spring Cloud stack, after the Netflix stack deprecation. 60 | * [Spring Boot Blog REST API](https://github.com/osopromadze/Spring-Boot-Blog-REST-API), osopromadze - Building Restful CRUD APIs for a blog using Spring Boot, Spring Security, Mysql, JPA and Hibernate. 61 | * [Springy Store Microservices](https://github.com/mohamed-taman/Springy-Store-Microservices), Mohamed Taman - A conceptual simple microservices-based project using Spring Boot and Spring Cloud, demonstrate how the Store services are created to be a cloud-native and 12-factor app agnostic. 62 | * [VueJS and Spring Boot](https://github.com/jonashackt/spring-boot-vuejs), Jonas Hecht - Example project showing how to build a Spring Boot App providing a GUI with Vue.js. 63 | 64 | ## Other Resources 65 | 66 | ### Blogs 67 | 68 | * [Baeldung](https://www.baeldung.com/) - In-depth articles and tutorials in the Java ecosystem and web development, with a strong focus on Spring, Spring Security and RESTful APIs. 69 | * [Marco Behler](https://www.marcobehler.com/guides) - Guides and tutorials about programming Java and Spring applications. 70 | * [Reflectoring](https://reflectoring.io/) - Guides and tutorials about Spring Boot, Java, and software development principles. 71 | * [Philip Riecks](https://rieckpil.de/category/spring-framework/) - Guides and tutorials about Spring Framework, Spring Boot, and Spring Test. 72 | * [Piotr's TechBlog](https://piotrminkowski.com) - Guides and tutorials about Spring Boot, Spring Cloud, Kubernetes, and microservices. 73 | * [Spring Official Blog](https://spring.io/blog) - Official blog of the Spring community. 74 | * [Spring Official Guides](https://spring.io/guides) - Tutorials, guides, and in-depth analysis about the Spring projects. 75 | * [VMware Tanzu Developer](https://tanzu.vmware.com/developer/topics/spring/) - Guides, videos, and Code Samples about Spring framework . 76 | 77 | ### YouTube Channels and Playlists 78 | 79 | _A collection of awesome YouTube channels and playlists about the Spring landscape. Subscribe to them to receive all the latest content._ 80 | 81 | * [Amigoscode](https://www.youtube.com/c/amigoscode) - Collection of full courses on topics like Java, Spring, and Kubernetes. 82 | * [Dan Vega](https://www.youtube.com/c/DanVega) - Collections of videos about Spring Boot and Java. 83 | * [Greg L. Turnquist](https://www.youtube.com/GregTurnquist) - Collection of videos discussing Spring Boot by Greg Turnquist. 84 | * [Java Brains](https://www.youtube.com/c/JavaBrainsChannel) - Collection of videos discussing Java and Spring Boot in detail by Koushik Kothagal. 85 | * [Laurențiu Spilcă](https://www.youtube.com/LaurentiuSpilca) - Video tutorials about Spring Fundamentals and Spring Security. 86 | * [SivaLabs](https://www.youtube.com/c/SivaLabs) - Video tutorials about Java, Spring and Kubernetes. 87 | * [Spring Academy](https://www.youtube.com/c/SpringAcademy/) - Video tutorials about Spring, with focus on Spring Cloud AWS and Spring Data. 88 | * [Spring Boot Quick Start](https://www.youtube.com/playlist?list=PLqq-6Pq4lTTbx8p2oCgcAQGQyqN8XeA1x) - Video tutorials to create full end-to-end Spring applications using Spring Boot. 89 | * [Spring Developer](https://www.youtube.com/user/SpringSourceDev/) - The official YouTube channel for the Spring project. 90 | * [Spring I/O Conference](https://www.youtube.com/c/SpringIOConference/) - Videos of keynotes and talks from all the past editions of the Spring I/O Conference. 91 | * [Spring Tips](https://www.youtube.com/playlist?list=PLgGXSWYM2FpPw8rV0tZoMiJYSCiLhPnOc) - Video playlist with tips and tutorials about Spring by Josh Long. 92 | 93 | ### Project Scaffolding 94 | 95 | * [Bootify](https://bootify.io) - Generate Spring Boot apps with custom database and REST API. 96 | * [JHipster](https://www.jhipster.tech/) - Quickly generate, develop, and deploy Spring Boot web applications and microservice architectures. 97 | * [Spring Initializr](https://start.spring.io/) - Get the basic structure of your Spring Boot project with your config and dependencies. 98 | 99 | ## Contributing 100 | 101 | Contributions are very welcome! 102 | 103 | Please, read the [Contribution Guidelines](https://github.com/ThomasVitale/awesome-spring/blob/master/CONTRIBUTING.md) before submitting your suggestion. 104 | 105 | Feel free to [open an issue](https://github.com/ThomasVitale/awesome-spring/issues) or [create a pull request](https://github.com/ThomasVitale/awesome-spring/pulls) with your additions. 106 | 107 | Thank you! 108 | --------------------------------------------------------------------------------