├── .github └── CODEOWNERS ├── LICENSE ├── README.md └── SECURITY.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Instructions for CODEOWNERS file format and automatic build failure notifications: 2 | # https://github.blog/2017-07-06-introducing-code-owners/ 3 | # https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners 4 | 5 | * @microsoft/spring-cloud-azure 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Microsoft Corporation. All rights reserved. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > [!IMPORTANT] 2 | > The repository microsoft/azure-spring-boot has been **archived** and is no longer actively maintained. The development for Spring related modules has been transitioned to the new [repository](https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/spring). We strongly encourage you to use new version: **Spring Cloud Azure 4.x/5.x**. If you have any questions or issues, please raise an issue in the https://github.com/Azure/azure-sdk-for-java/issues. 3 | 4 | # Azure Spring Boot 5 | 6 | ## The Spring modules in this repo are moved to [Azure Java SDK repo](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/spring). 7 | 8 | Spring Cloud Azure 4.x has been GAed and it brings much more consistent experience, check this [reference doc](https://microsoft.github.io/spring-cloud-azure/) for more details. 9 | 10 | ## We will continue to respond to open issues here, new issues should be reported on [Azure Java SDK repo](https://github.com/Azure/azure-sdk-for-java/). 11 | 12 | ## Thank you for your patience. We look forward to continuing to work together with you. 13 | 14 | ## Below are the new locations for Spring modules 15 | 16 | |Module name |New module name |Has been deprecated |Description 17 | |----------------------------------------------|--------------------------------------------------|--------------------|----------| 18 | |azure-active-directory-b2c-spring-boot-starter| [spring-cloud-azure-starter-active-directory-b2c]|No | 19 | |azure-active-directory-spring-boot-starter | [spring-cloud-azure-starter-active-directory] |No | 20 | |azure-spring-boot-starter-cosmos | [spring-cloud-azure-starter-data-cosmos] |No | 21 | |azure-keyvault-secrets-spring-boot-starter | [spring-cloud-azure-starter-keyvault-secrets] |No | 22 | |azure-servicebus-jms-spring-boot-starter | [spring-cloud-azure-starter-servicebus-jms] |No | 23 | |azure-spring-boot-starter-storage | [spring-cloud-azure-starter-storage-blob] |No | 24 | |azure-spring-boot-metrics-starter | N/A |Yes | 25 | |spring-data-gremlin-boot-starter | N/A |Yes |Vote [this issue](https://github.com/Azure/azure-sdk-for-java/issues/24773) if you want it be supported. 26 | 27 | [spring-cloud-azure-starter-active-directory-b2c]: https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/spring/spring-cloud-azure-starter-active-directory-b2c 28 | [spring-cloud-azure-starter-active-directory]: https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/spring/spring-cloud-azure-starter-active-directory 29 | [spring-cloud-azure-starter-data-cosmos]: https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/spring/spring-cloud-azure-starter-data-cosmos 30 | [spring-cloud-azure-starter-keyvault-secrets]: https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/spring/spring-cloud-azure-starter-keyvault-secrets 31 | [spring-cloud-azure-starter-servicebus-jms]: https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/spring/spring-cloud-azure-starter-servicebus-jms 32 | [spring-cloud-azure-starter-storage-blob]: https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/spring/spring-cloud-azure-starter-storage-blob 33 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Security 4 | 5 | Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/). 6 | 7 | If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition), please report it to us as described below. 8 | 9 | ## Reporting Security Issues 10 | 11 | **Please do not report security vulnerabilities through public GitHub issues.** 12 | 13 | Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report). 14 | 15 | If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey). 16 | 17 | You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc). 18 | 19 | Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue: 20 | 21 | * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) 22 | * Full paths of source file(s) related to the manifestation of the issue 23 | * The location of the affected source code (tag/branch/commit or direct URL) 24 | * Any special configuration required to reproduce the issue 25 | * Step-by-step instructions to reproduce the issue 26 | * Proof-of-concept or exploit code (if possible) 27 | * Impact of the issue, including how an attacker might exploit the issue 28 | 29 | This information will help us triage your report more quickly. 30 | 31 | If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty) page for more details about our active programs. 32 | 33 | ## Preferred Languages 34 | 35 | We prefer all communications to be in English. 36 | 37 | ## Policy 38 | 39 | Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/opensource/security/cvd). 40 | 41 | 42 | --------------------------------------------------------------------------------