diff --git a/java/TOC.yml b/java/TOC.yml
index f7f7340b7a..ec08f2085d 100644
--- a/java/TOC.yml
+++ b/java/TOC.yml
@@ -42,7 +42,7 @@
- name: MongoDB API
href: /azure/cosmos-db/create-mongodb-java?toc=/azure/java/toc.json&bc=/azure/java/breadcrumb/toc.json
- name: Storage Blobs
- href: /azure/storage/blobs/storage-quickstart-blobs-java-v10?toc=/azure/java/toc.json&bc=/azure/java/breadcrumb/toc.json
+ href: /azure/storage/blobs/storage-quickstart-blobs-java?toc=/azure/java/toc.json&bc=/azure/java/breadcrumb/toc.json
- name: Redis Cache
href: /azure/azure-cache-for-redis/cache-java-get-started?toc=/azure/java/toc.json&bc=/azure/java/breadcrumb/toc.json
- name: Service Fabric
diff --git a/java/spring-framework/deploy-spring-boot-java-app-on-kubernetes.md b/java/spring-framework/deploy-spring-boot-java-app-on-kubernetes.md
index a643695f40..67742174da 100644
--- a/java/spring-framework/deploy-spring-boot-java-app-on-kubernetes.md
+++ b/java/spring-framework/deploy-spring-boot-java-app-on-kubernetes.md
@@ -8,7 +8,7 @@ manager: douge
editor: ''
ms.assetid:
ms.author: brendm
-ms.date: 12/19/2018
+ms.date: 11/12/2019
ms.devlang: java
ms.service: multiple
ms.tgt_pltfrm: multiple
@@ -118,7 +118,7 @@ The following steps walk you through building a Spring Boot web application and
```xml
wingtiptoysregistry.azurecr.io
- 1.2.0
+ 1.7.0
1.8
```
diff --git a/java/spring-framework/deploy-spring-boot-java-app-on-linux.md b/java/spring-framework/deploy-spring-boot-java-app-on-linux.md
index 6bcabccde8..148da6fd60 100644
--- a/java/spring-framework/deploy-spring-boot-java-app-on-linux.md
+++ b/java/spring-framework/deploy-spring-boot-java-app-on-linux.md
@@ -8,7 +8,7 @@ manager: douge
editor: ''
ms.assetid:
ms.author: brendm
-ms.date: 12/19/2018
+ms.date: 11/12/2019
ms.devlang: java
ms.service: app-service
ms.tgt_pltfrm: multiple
@@ -70,7 +70,7 @@ The following steps walk you through the steps that are required to create a sim
1. Once the web app has been created, change directory to the `target` directory where the JAR file is located and start the web app; for example:
```
cd target
- java -jar gs-spring-boot-docker-0.1.0.jar
+ java -jar gs-spring-boot-docker-0.1.0.jar --server.port=80
```
1. Test the web app by browsing to it locally using a web browser. For example, if you have curl available and you configured the Tomcat server to run on port 80:
@@ -78,7 +78,7 @@ The following steps walk you through the steps that are required to create a sim
curl http://localhost
```
-1. You should see the following message displayed: **Hello Docker World!**
+1. You should see the following message displayed: **Hello Docker World**
![Browse Sample App Locally][SB01]
@@ -119,7 +119,7 @@ The following steps walk you through using the Azure portal to create an Azure C
```xml
- 1.2.0
+ 1.7.0
wingtiptoysregistry.azurecr.io
1.8
wingtiptoysregistry
diff --git a/java/spring-framework/spring-app-service-e2e.md b/java/spring-framework/spring-app-service-e2e.md
index 3b71f81e93..8e0b187840 100644
--- a/java/spring-framework/spring-app-service-e2e.md
+++ b/java/spring-framework/spring-app-service-e2e.md
@@ -4,7 +4,7 @@ description: End-to-end tutorial for Java App Service with MySQL
author: KarlErickson
manager: barbkess
ms.author: karler
-ms.date: 08/38/2019
+ms.date: 11/12/2019
ms.service: app-service
ms.devlang: java
ms.topic: article
@@ -18,7 +18,7 @@ This tutorial builds on the popular Spring PetClinic sample app. In this topic,
## Prerequisites
-* [Azure CLI](http://docs.microsoft.com/cli/azure/overview)
+* [Azure CLI](https://docs.microsoft.com/cli/azure/overview)
* [Java 8](http://java.oracle.com/)
* [Maven 3](http://maven.apache.org/)
* [Git](https://github.com/)
@@ -118,13 +118,18 @@ Next, update the *pom.xml* file to configure Maven for an Azure deployment. Add
com.microsoft.azure
azure-webapp-maven-plugin
- 1.7.0
+ 1.8.0
+ v2
${RESOURCEGROUP_NAME}
${WEBAPP_PLAN_NAME}
${WEBAPP_NAME}
${REGION}
- tomcat 8.5-jre8
+
+ linux
+ jre8
+ TOMCAT 8.5
+
```