skills.vishalvoidskills/vishalvoid
Technical & DevelopmentIntermediate

azure-appconfiguration-java

Centralized app configuration management

Developer Setup

Setup & Installation

bash
npx skills add https://github.com/microsoft/skills --skill azure-appconfiguration-java

Overview

What This Skill Does

Java client library for Azure App Configuration, a managed service that centralizes key-value settings, feature flags, and configuration snapshots. Supports both synchronous and async clients, label-based environment separation, and ETag-based optimistic concurrency.

Application

When to use this Skill

Documentation

Show Skills.md file

Azure App Configuration SDK for Java

Client library for Azure App Configuration, a managed service for centralizing application configurations.

Installation

<dependency>
    <groupId>com.azure</groupId>
    <artifactId>azure-data-appconfiguration</artifactId>
    <version>1.8.0</version>
</dependency>

Or use Azure SDK BOM:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>com.azure</groupId>
            <artifactId>azure-sdk-bom</artifactId>
            <version>{bom_version}</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

<dependencies>
    <dependency>
        <groupId>com.azure</groupId>
        <artifactId>azure-data-appconfiguration</artifactId>
    </dependency>
</dependencies>
Lines 1 - 36 of 474

Recommendations

Explore other random skills

All skillsMy patterns