Azure Traffic Manager libraries for Java
Overview
Control the distribution of user traffic for service endpoints in different datacenters with Azure Traffic Manager.
To get started with Azure Traffic Manager, see Create a Traffic Manager profile.
Management API
Create Traffic Manager profiles, define endpoints, and change the routing method with the management API.
Add a dependency to your Maven pom.xml
file to use the management API in your project.
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-mgmt-trafficmanager</artifactId>
<version>1.3.0</version>
</dependency>
Example
Create a Traffic Manager profile and assign a single endpoint.
TrafficManagerProfile tmProfile = azure.trafficManagerProfiles().define("testTMProfile")
.withNewResourceGroup(Region.US_EAST)
.withLeafDomainLabel("testTMProfile")
.withPriorityBasedRouting()
.defineAzureTargetEndpoint("endpoint")
.toResourceId(webAppId)
.withRoutingPriority(1)
.attach()
.create();
Samples
Balance web app traffic across multiple regions
Explore more sample Java code for Azure Traffic Manager you can use in your apps.
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for Java