You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/app-service/configure-language-java.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -450,7 +450,7 @@ To inject these secrets in your Spring or Tomcat configuration file, use environ
450
450
451
451
### Use the JavaKeyStore
452
452
453
-
Bydefault, any public or private certificates [uploaded to AppServiceLinux](configure-ssl-certificate.md) is loaded into the respective JavaKeyStores as the container starts. After uploading your certificate, you'll need to restart your App Service for it to be loaded into the Java Key Store. Public certificates are loaded into the Key Store at `$JRE_HOME/lib/security/cacerts`, and private certificates are stored in `$JRE_HOME/lib/security/client.jks`.
453
+
Bydefault, any public or private certificates [uploaded to AppServiceLinux](configure-ssl-certificate.md) are loaded into the respective JavaKeyStores as the container starts. After uploading your certificate, you'll need to restart your App Service for it to be loaded into the Java Key Store. Public certificates are loaded into the Key Store at `$JRE_HOME/lib/security/cacerts`, and private certificates are stored in `$JRE_HOME/lib/security/client.jks`.
454
454
455
455
More configuration might be necessary for encrypting your JDBC connection with certificates in the Java Key Store. Refer to the documentation for your chosen JDBC driver.
456
456
@@ -1121,7 +1121,7 @@ If you choose to pin the minor version, you need to periodically update the JVM
1121
1121
1122
1122
### Clustering in JBoss EAP
1123
1123
1124
-
App Service supports clustering for JBoss EAP versions 7.4.1 and greater. To enable clustering, your web app must be [integrated with a virtual network](overview-vnet-integration.md). When the web app is integrated with a virtual network, the web app restarts and JBoss EAP automatically starts up with a clustered configuration. The JBoss EAP instances communicate over the subnet specified in the virtual network integration, using the ports shown in the `WEBSITES_PRIVATE_PORTS` environment variable at runtime. You can disable clustering by creating an app setting named `WEBSITE_DISABLE_CLUSTERING` with any value.
1124
+
App Service supports clustering for JBoss EAP versions 7.4.1 and greater. To enable clustering, your web app must be [integrated with a virtual network](overview-vnet-integration.md). When the web app is integrated with a virtual network, it restarts, and the JBoss EAP installation automatically starts up with a clustered configuration. The JBoss EAP instances communicate over the subnet specified in the virtual network integration, using the ports shown in the `WEBSITES_PRIVATE_PORTS` environment variable at runtime. You can disable clustering by creating an app setting named `WEBSITE_DISABLE_CLUSTERING` with any value.
1125
1125
1126
1126
> [!NOTE]
1127
1127
> If you're enabling your virtual network integration with an ARM template, you need to manually set the property `vnetPrivatePorts` to a value of `2`. If you enable virtual network integration from the CLI or Portal, this property is set for you automatically.
@@ -1150,7 +1150,7 @@ JBoss EAP is only available on the Premium v3 and Isolated v2 App Service Plan t
1150
1150
1151
1151
Java developers can customize the server settings, troubleshoot issues, and deploy applications to Tomcat with confidence if they know about the server.xml file and configuration details of Tomcat. Possible customizations include:
1152
1152
1153
-
* Customizing Tomcat configuration: By understanding the server.xml file and Tomcat's configuration details, developers can fine-tune the server settings to match the needs of their applications.
1153
+
* Customizing Tomcat configuration: By understanding the server.xml file and Tomcat's configuration details, you can fine-tune the server settings to match the needs of their applications.
1154
1154
* Debugging: When an application is deployed on a Tomcat server, developers need to know the server configuration to debug any issues that might arise. This includes checking the server logs, examining the configuration files, and identifying any errors that might be occurring.
1155
1155
* Troubleshooting Tomcat issues: Inevitably, Java developers encounter issues with their Tomcat server, such as performance problems or configuration errors. By understanding the server.xml file and Tomcat's configuration details, developers can quickly diagnose and troubleshoot these issues, which can save time and effort.
1156
1156
* Deploying applications to Tomcat: To deploy a Java web application to Tomcat, developers need to know how to configure the server.xml file and other Tomcat settings. Understanding these details is essential for deploying applications successfully and ensuring that they run smoothly on the server.
@@ -1159,7 +1159,7 @@ When you create an app with built-in Tomcat to host your Java workload (a WAR fi
1159
1159
1160
1160
Additionally, there are certain transformations that are further applied on top of the server.xml for Tomcat distribution upon start. These are transformations to the Connector, Host, and Valve settings.
1161
1161
1162
-
Note that the latest versions of Tomcat have these server.xml (8.5.58 and 9.0.38 onward). Older versions of Tomcat don't use transforms and might have different behavior as a result.
1162
+
Note that the latest versions of Tomcat have server.xml (8.5.58 and 9.0.38 onward). Older versions of Tomcat don't use transforms and might have different behavior as a result.
1163
1163
1164
1164
### Connector
1165
1165
@@ -1198,7 +1198,7 @@ az webapp config appsettings set --resource-group myResourceGroup --name myApp -
1198
1198
* `xmlBase` is set to `AZURE_SITE_HOME`, which defaults to `/site/wwwroot`
1199
1199
* `unpackWARs` is set to `AZURE_UNPACK_WARS`, which defaults to `true`
1200
1200
* `workDir` is set to `JAVA_TMP_DIR`, which defaults `TMP`
0 commit comments