{"id":13460676,"url":"https://github.com/stunstunstun/awesome-spring-boot","last_synced_at":"2026-04-12T06:11:22.930Z","repository":{"id":34763406,"uuid":"38745055","full_name":"stunstunstun/awesome-spring-boot","owner":"stunstunstun","description":"Code based and real world examples of Spring Boot and shiny things. 😍","archived":false,"fork":false,"pushed_at":"2021-12-10T09:23:52.000Z","size":10325,"stargazers_count":421,"open_issues_count":3,"forks_count":94,"subscribers_count":33,"default_branch":"master","last_synced_at":"2024-05-22T16:12:18.569Z","etag":null,"topics":["awesome-spring","awesome-spring-boot","java","spring","spring-boot","springboot"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stunstunstun.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-07-08T09:35:46.000Z","updated_at":"2024-05-15T08:56:24.000Z","dependencies_parsed_at":"2022-08-08T02:00:33.036Z","dependency_job_id":null,"html_url":"https://github.com/stunstunstun/awesome-spring-boot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stunstunstun%2Fawesome-spring-boot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stunstunstun%2Fawesome-spring-boot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stunstunstun%2Fawesome-spring-boot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stunstunstun%2Fawesome-spring-boot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stunstunstun","download_url":"https://codeload.github.com/stunstunstun/awesome-spring-boot/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":222004233,"owners_count":16914875,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["awesome-spring","awesome-spring-boot","java","spring","spring-boot","springboot"],"created_at":"2024-07-31T10:00:46.855Z","updated_at":"2026-04-12T06:11:22.870Z","avatar_url":"https://github.com/stunstunstun.png","language":"Java","funding_links":[],"categories":["Programming languages and frameworks"],"sub_categories":[],"readme":"# \u003cimg src=\"http://stormpath.com/wp-content/uploads/2016/05/spring-boot-logo.jpg\" width=\"50\" align=\"absmiddle\"/\u003e Awesome Spring Boot \n\n[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)\n[![Build Status](https://travis-ci.org/stunstunstun/awesome-spring-boot.svg?branch=master)](https://travis-ci.org/stunstunstun/awesome-spring-boot)\n[![Wercker](https://img.shields.io/badge/spring--boot-1.5.3.RELEASE-brightgreen.svg)]()\n[![Wercker](https://img.shields.io/badge/java-8-brightgreen.svg)]()\n[![Wercker](https://img.shields.io/badge/gradle-3.5-brightgreen.svg)]()\n\nA curated list of amazingly examples of Spring Boot, resources and shiny things.\n\n## Contents\n\n\u003cdetails\u003e\n\u003c!-- toc --\u003e\n\n- [Tutorials](#tutorials)\n- [DevOps](#devops)\n  - [Prerequisite](#prerequisite)\n  - [Test](#test)\n  - [Build](#build)\n  - [Run](#run)\n- [Spring Boot Features](#spring-boot-features)\n\n\u003c!-- tocstop --\u003e\n\u003c/details\u003e\n\n## Tutorials\n\n#### Afterwards Spring Boot works\n\nProject | Build | Description |\n---|---|----\n[spring-boot-jdbc-example](https://github.com/stunstunstun/awesome-spring-boot/tree/master/spring-boot-jdbc-example) | Gradle | Integrating Spring Boot with JDBC\n[spring-boot-jpa-example](https://github.com/stunstunstun/awesome-spring-boot/tree/master/spring-boot-jpa-example) | Gradle | Integrating Spring Boot with JPA\n[spring-boot-mybatis-example](https://github.com/stunstunstun/awesome-spring-boot/tree/master/spring-boot-mybatis-example)| Gradle | Integrating Spring Boot with myBatis\n[spring-boot-mybatis-multi-example](https://github.com/stunstunstun/awesome-spring-boot/tree/master/spring-boot-mybatis-multi-example) | Gradle | Integrating Spring Boot with multiple datasources\n[spring-boot-mvc-example](https://github.com/stunstunstun/awesome-spring-boot/tree/master/spring-boot-mvc-example) | Gradle | Integrating Spring Boot with Spring MVC\n\n#### Download\n\n```\n$ git clone https://github.com/stunstunstun/awesome-spring-boot.git\n```\n\n## DevOps\n\n#### Prerequisite\n\nYour operating system must have the JDK installed and it's recommended that you install the IDE to look up the source code.\n\n#### Test\n\nCheck the test case with the `@Test` annotation.\n\n```\n$ gradlew test \n```\n\n#### Build\n\nBuild the project and create executable jar and war files.\n\n```\n$ gradlew assemble \n```\n\nIt doesn't work? You should check execution permission.\n\n```\n$ chmod +x gradlew\n```\n\n#### Run\n\nAn example with spring-web-starter can be connected by Web Browser\n\n```\n$ gradlew :spring-boot-mvc-example:bootRun\n```\n\n```\nGET http://localhost:8080/users\n```\n\n## Spring Boot Features\n\n#### Bootstrap By Spring Boot CLI\n\n`Install Spring Boot CLI`\n```\n$ brew tap pivotal/tap\n$ brew install springboot\n$ spring --version\n```\n\n`Create Project`\n```\n$ spring init --build=gradle --java-version=1.8 --dependencies=data-jpa spring-boot-jpa-example\n```\n\n## You can do it in yourself!\n\n#### Spring Core\n- http://vojtechruzicka.com/field-dependency-injection-considered-harmful/\n\n#### Spring Boot Test\n- https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-testing.html\n- https://spring.io/blog/2016/04/15/testing-improvements-in-spring-boot-1-4\n- https://docs.spring.io/spring/docs/current/spring-framework-reference/html/integration-testing.html\n- http://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/test/mock/mockito/MockBean.html\n\n#### Spring Data REST\n- https://docs.spring.io/spring-data/rest/docs/current/reference/html/\n\n\n#### Data Access\n- https://spring.io/guides/gs/accessing-data-jpa/\n- https://spring.io/guides/gs/accessing-data-mysql/\n- https://docs.spring.io/spring-boot/docs/current/reference/html/howto-database-initialization.html\n\n#### Logging\n- https://docs.spring.io/spring-boot/docs/current/reference/html/howto-logging.html\n- https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-logging.html\n- https://www.slideshare.net/whiteship/ss-47273947\n\n#### HTTP Client\n- https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-restclient.html\n\n#### Embedded Servlet Containers\n- https://docs.spring.io/spring-boot/docs/current/reference/html/howto-embedded-servlet-containers.html\n\n#### Profiles\n- https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-profiles.html\n- https://docs.spring.io/spring-boot/docs/current/reference/html/howto-properties-and-configuration.html\n- https://docs.spring.io/spring-boot/docs/current/reference/html/howto-database-initialization.html\n\n#### Actuator\n- https://spring.io/guides/gs/actuator-service/\n- https://github.com/spring-projects/spring-boot/tree/master/spring-boot-actuator\n- https://docs.spring.io/spring-boot/docs/current/reference/html/howto-actuator.html\n- https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-monitoring.html\n- https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-endpoints.html \n\n#### Hotswapping\n- https://docs.spring.io/spring-boot/docs/current/reference/html/howto-hotswapping.html\n- https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-devtools.html\n- https://spring.io/blog/2015/06/17/devtools-in-spring-boot-1-3\n\n#### Deploy To AWS, Cloud Foundry\n- https://docs.spring.io/spring-boot/docs/current/reference/html/howto-traditional-deployment.html\n- https://docs.spring.io/spring-boot/docs/current/reference/html/cloud-deployment.html\n\n#### Spring Boot Book\n- https://www.manning.com/books/spring-boot-in-practice\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstunstunstun%2Fawesome-spring-boot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstunstunstun%2Fawesome-spring-boot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstunstunstun%2Fawesome-spring-boot/lists"}