Skip to content

Commit a606e70

Browse files
authored
Merge pull request #102830 from JasonFreeberg/remove-wildfly-mentions
Remove Wildfly from App Service docs
2 parents 0c2e84a + 4131c6d commit a606e70

File tree

7 files changed

+12
-740
lines changed

7 files changed

+12
-740
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48545,6 +48545,11 @@
4854548545
"source_path": "articles/virtual-machines/linux/ansible-manage-linux-vm.md",
4854648546
"redirect_url": "/azure/ansible/ansible-manage-linux-vm",
4854748547
"redirect_document_id": false
48548+
},
48549+
{
48550+
"source_path": "articles/app-service/containers/tutorial-java-enterprise-postgresql-app.md",
48551+
"redirect_url": "/azure/app-service/containers/configure-language-java",
48552+
"redirect_document_id": false
4854848553
}
4854948554
]
4855048555
}

articles/app-service/configure-language-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ Java applications running in App Service have the same set of [security best pra
124124

125125
Set up app authentication in the Azure portal with the **Authentication and Authorization** option. From there, you can enable authentication using Azure Active Directory or social logins like Facebook, Google, or GitHub. Azure portal configuration only works when configuring a single authentication provider. For more information, see [Configure your App Service app to use Azure Active Directory login](configure-authentication-provider-aad.md) and the related articles for other identity providers. If you need to enable multiple sign-in providers, follow the instructions in the [customize App Service authentication](app-service-authentication-how-to.md) article.
126126

127-
#### Tomcat and Wildfly
127+
#### Tomcat
128128

129-
Your Tomcat or Wildfly application can access the user's claims directly from the servlet by casting the Principal object to a Map object. The Map object will map each claim type to a collection of the claims for that type. In the code below, `request` is an instance of `HttpServletRequest`.
129+
Your Tomcat application can access the user's claims directly from the servlet by casting the Principal object to a Map object. The Map object will map each claim type to a collection of the claims for that type. In the code below, `request` is an instance of `HttpServletRequest`.
130130

131131
```java
132132
Map<String, Collection<String>> map = (Map<String, Collection<String>>) request.getUserPrincipal();

articles/app-service/containers/app-service-linux-faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can find all Docker files on [GitHub](https://github.com/azure-app-service).
2828
| Stack | Expected Value |
2929
|-----------------|----------------------------------------------------------------------------------------|
3030
| Java SE | the command to start your JAR app (for example, `java -jar /home/site/wwwroot/app.jar --server.port=80`) |
31-
| Tomcat, Wildfly | the location of a script to perform any necessary configurations (for example, `/home/site/deployments/tools/startup_script.sh`) |
31+
| Tomcat | the location of a script to perform any necessary configurations (for example, `/home/site/deployments/tools/startup_script.sh`) |
3232
| Node.js | the PM2 configuration file or your script file |
3333
| .Net Core | the compiled DLL name as `dotnet <myapp>.dll` |
3434
| Ruby | the Ruby script that you want to initialize your app with |

articles/app-service/containers/configure-language-java.md

Lines changed: 4 additions & 513 deletions
Large diffs are not rendered by default.

articles/app-service/containers/quickstart-java.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ Enter index to use:
7474
Define value for runtimeStack(Default: TOMCAT 8.5):
7575
1. TOMCAT 9.0
7676
2. TOMCAT 8.5 [*]
77-
3. WILDFLY 14
7877
Enter index to use:
7978
Please confirm webapp properties
8079
AppName : helloworld-1558400876966
@@ -134,9 +133,6 @@ This command may take a minute to run.
134133

135134
## Next steps
136135

137-
> [!div class="nextstepaction"]
138-
> [Tutorial: Java Enterprise app with PostgreSQL](tutorial-java-enterprise-postgresql-app.md)
139-
140136
> [!div class="nextstepaction"]
141137
> [Configure Java app](configure-custom-container.md)
142138

articles/app-service/containers/toc.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@
4343
href: tutorial-python-postgresql-app.md
4444
- name: Java with Spring Data
4545
href: tutorial-java-spring-cosmosdb.md
46-
- name: Java Enterprise with Postgres
47-
href: tutorial-java-enterprise-postgresql-app.md
4846
- name: Multi-container app
4947
href: tutorial-multi-container-app.md
5048
- name: Run container from ACR

articles/app-service/containers/tutorial-java-enterprise-postgresql-app.md

Lines changed: 0 additions & 218 deletions
This file was deleted.

0 commit comments

Comments
 (0)