Skip to content

Commit

Permalink
Merge pull request #84 from MicrosoftDocs/master
Browse files Browse the repository at this point in the history
8/30 AM Publish
  • Loading branch information
huypub authored Aug 30, 2019
2 parents f519a1e + 7b2bdcf commit 9cd460e
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 42 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: # Create a Hello World web app for Azure using the legacy toolkit for Eclipse
title: Create a Hello World web app for Azure using the legacy toolkit for Eclipse
description: This tutorial shows you how to use version 3.0.6 (or earlier) of the Azure Toolkit for Eclipse to create a Hello World Web App for Azure.
services: app-service
documentationcenter: java
Expand Down
3 changes: 2 additions & 1 deletion java/jdk/java-jdk-docker-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ ms.date: 04/09/2019
ms.devlang: java
ms.topic: conceptual
ms.service: azure
ms.custom: seo-java-august2019
---
# Use Docker with a JDK for Azure
# Use Docker with a Java Development Kit (JDK) for Azure

Pre-built Docker images for Java 7, 8, and 11 are available through [Docker Hub](https://hub.docker.com/_/microsoft-java-se).

Expand Down
4 changes: 2 additions & 2 deletions java/jdk/java-jdk-flight-recorder-and-mission-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ ms.date: 04/09/2019
ms.devlang: java
ms.topic: conceptual
ms.service: azure
ms.custom: seo-java-july2019
ms.custom: seo-java-july2019, seo-java-august2019
---
# Using Java Flight Recorder (JFR) and Mission Control
# Monitor and manage Java workloads with Java Flight Recorder (JFR) and Zulu Mission Control

Zulu Mission Control is a fully-tested build of JDK Mission Control, which was open sourced by Oracle in 2018 and is managed as a project under the OpenJDK umbrella. Coupled with Flight Recorder, Mission Control delivers low-overhead, interactive monitoring and management capabilities for Java workloads.

Expand Down
Empty file.
Empty file.
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ The Spring Boot Starter for Azure Service Bus JMS provides Spring integration wi

This article demonstrates how to use Spring Boot Starter for Azure Service Bus JMS to send messages to and receive messages from Service Bus `queues` and `topics`.

> [!NOTE]
> Currently, this article uses the `SNAPSHOT` version of the starter.
## Prerequisites

The following prerequisites are required for this article:
Expand Down Expand Up @@ -61,28 +58,11 @@ The following prerequisites are required for this article:
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-servicebus-jms-spring-boot-starter</artifactId>
<version>2.1.7-SNAPSHOT</version>
<version>2.1.7</version>
</dependency>
```

![Add the dependency section to the pom.xml file.](./media/configure-spring-boot-starter-java-app-with-azure-service-bus/add-dependency-section.png)

1. Add the [maven repositories](https://maven.apache.org/settings.html#Repositories) configuration to use SNAPSHOT version:

```xml
<repositories>
<repository>
<id>nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
```

![Add the repository section to the pom.xml file.](./media/configure-spring-boot-starter-java-app-with-azure-service-bus/add-repository-section.png)
![Add the dependency section to the pom.xml file.](./media/configure-spring-boot-starter-java-app-with-azure-service-bus/add-dependency-section-new.png)

1. Save and close the *pom.xml* file.

Expand Down Expand Up @@ -116,7 +96,7 @@ In this section, you see how to configure your app to use either a Service Bus q
| `spring.jms.servicebus.connection-string` | Specify the connection string you obtained in your Service Bus namespace from the Azure portal. |
| `spring.jms.servicebus.idle-timeout` | Specify the idle timeout in milliseconds. The recommended value for this tutorial is 1800000. |

3. Save and close the *application.properties* file.
1. Save and close the *application.properties* file.

### Use Service Bus topic

Expand Down Expand Up @@ -348,7 +328,7 @@ In this section, you create the necessary Java classes for sending messages to y
mvn clean spring-boot:run
```

3. Once your application is running, you can use *curl* to test your application:
1. Once your application is running, you can use *curl* to test your application:

```shell
curl -X POST localhost:8080/messages?message=hello
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ description: Learn how to configure an application created with the Spring Boot
services: cosmos-db
documentationcenter: java
author: bmitchell287
manager: douge
editor: ''
ms.assetid:
ms.author: brendm
ms.date: 12/19/2018
ms.devlang: java
ms.service: cosmos-db
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ ms.service: app-service
ms.tgt_pltfrm: multiple
ms.topic: article
ms.workload: web
ms.custom: seo-java-july2019
ms.custom: seo-java-july2019, seo-java-august2019
---

# How to use the Maven Plugin for Azure Web Apps to deploy a containerized Spring Boot app to Azure
# Use Maven for Azure Web Apps to deploy a containerized Spring Boot app to Azure

This article demonstrates using the [Maven Plugin for Azure Web Apps](https://github.com/Microsoft/azure-maven-plugins/tree/master/azure-webapp-maven-plugin) to deploy a sample Spring Boot application in a Docker container to Azure App Services.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ ms.service: multiple
ms.tgt_pltfrm: multiple
ms.topic: article
ms.workload: web
ms.custom: seo-java-july2019
ms.custom: seo-java-july2019, seo-java-august2019
---

# How to use the Maven Plugin for Azure Web Apps to deploy a Spring Boot app in Azure Container Registry to Azure App Service
# Use Maven for Azure Web Apps to deploy a Spring Boot app in Azure Container Registry to Azure App Service

This article demonstrates how to deploy a sample [Spring Boot] application to Azure Container Registry, and then use the Maven Plugin for Azure Web Apps to deploy your application to Azure App Service.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ms.custom: seo-java-july2019, seo-java-august2019
#Customer intent: As a Java and Spring developer, I want to deploy apps to Azure as JAR files so that I don't have to deal with app server configuration and management.
---

# Deploy a Spring Boot web app to Azure App Service on Linux
# Deploy a Spring Boot JAR file app to Azure App Service with Maven and Azure on Linux

This article demonstrates using the [Maven Plugin for Azure App Service Web Apps](/java/api/overview/azure/maven/azure-webapp-maven-plugin/readme) to deploy a Spring Boot application packaged as a Java SE JAR to [Azure App Service on Linux](/azure/app-service/containers/). Choose Java SE deployment over [Tomcat and WAR files](/azure/app-service/containers/quickstart-java) when you want to consolidate your app's dependencies, runtime, and configuration into a single deployable artifact.

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 1 addition & 3 deletions javascript/TOC.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,11 @@
- name: Log Analytics with Azure Monitor
href: /azure/azure-monitor/learn/quick-collect-linux-computer?toc=/azure/javascript/toc.json&bc=/azure/javascript/breadcrumb/toc.json
- name: GitHub Actions
href: https://css-tricks.com/introducing-github-actions/
href: https://azure.microsoft.com/resources/videos/azure-friday-deploy-to-azure-using-github-actions
- name: Debugging and diagnostics
items:
- name: Remote debugging for Azure App Service
href: https://code.visualstudio.com/docs/azure/remote-debugging
- name: Log Points in VS Code for Azure App Service
href: https://code.visualstudio.com/blogs/2018/07/12/introducing-logpoints-and-auto-attach
- name: Debug local Node.js apps in VS Code
href: https://code.visualstudio.com/docs/nodejs/nodejs-debugging
- name: Tools and extensions
Expand Down
2 changes: 1 addition & 1 deletion javascript/index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ sections:
image:
src: /media/logos/logo_vs-team-services.svg
- title: GitHub Actions
href: https://css-tricks.com/introducing-github-actions/
href: https://azure.microsoft.com/resources/videos/azure-friday-deploy-to-azure-using-github-actions
html: <p>Build and deploy apps to Azure from GitHub Actions</p>
image:
src: /media/logos/logo_octokitty.svg
Expand Down
6 changes: 4 additions & 2 deletions javascript/node-howto-write-serverless-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,14 @@ From here, you can enjoy a number other resources that help you explore serverle
- Learn about using various triggers to run serverless code:

- [Run code on a timer](/azure/azure-functions/functions-create-scheduled-function)
- [Run code when file are uploaded or updated in Azure Blob storage](/azure/storage/blobs/storage-upload-process-images?tabs=nodejsv10)
- [Run code when files are uploaded or updated in Azure Blob storage](/azure/storage/blobs/storage-upload-process-images?tabs=nodejsv10)
- [Run code when a message is written into Azure Queue Storage](/azure/azure-functions/functions-create-storage-queue-triggered-function)

- [Store unstructured data using Azure Functions and Azure Cosmos DB](/azure/azure-functions/functions-integrate-store-unstructured-data-cosmosdb.md?tabs=javascript). For information on other databases, see [How to integrate Azure databases in Node.js code](node-howto-integrate-databases.md)

- [Code and test Azure Functions locally](/azure/azure-functions/functions-develop-local) along with [Strategies for testing your code in Azure Functions](/azure/azure-functions/functions-test-a-function) and [Error handling](/azure/azure-functions/functions-bindings-error-pages)
- [Code and test Azure Functions locally](/azure/azure-functions/functions-develop-local)

- [Strategies for testing your code in Azure Functions](/azure/azure-functions/functions-test-a-function) and [Error handling](/azure/azure-functions/functions-bindings-error-pages)

- [Configure authentication with Azure Active Directory](/azure/app-service/configure-authentication-provider-aad.md?toc=%2fazure%2fazure-functions%2ftoc.json)

Expand Down

0 comments on commit 9cd460e

Please sign in to comment.