Skip to content

Commit 6091e61

Browse files
author
Jason Freeberg
authored
Update configure-language-java.md
1 parent e32f544 commit 6091e61

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

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

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -273,15 +273,14 @@ If your application uses [Logback](https://logback.qos.ch/) or [Log4j](https://l
273273

274274
## Customization and tuning
275275

276-
Azure App Service for Linux supports out of the box tuning and customization through the Azure portal and CLI. Review the following articles for non-Java-specific web app configuration:
276+
Azure App Service supports out of the box tuning and customization through the Azure portal and CLI. Review the following articles for non-Java-specific web app configuration:
277277

278278
- [Configure app settings](configure-common.md#configure-app-settings)
279279
- [Set up a custom domain](app-service-web-tutorial-custom-domain.md)
280280
- [Configure TLS/SSL bindings](configure-ssl-bindings.md)
281281
- [Add a CDN](../cdn/cdn-add-to-web-app.md)
282282
- [Configure the Kudu site](https://github.com/projectkudu/kudu/wiki/Configurable-settings#linux-on-app-service-settings)
283283

284-
285284
### Set Java runtime options
286285

287286
To set allocated memory or other JVM runtime options, create an [app setting](configure-common.md#configure-app-settings) named `JAVA_OPTS` with the options. App Service passes this setting as an environment variable to the Java runtime when it starts.
@@ -299,6 +298,13 @@ To configure the app setting from the Maven plugin, add setting/value tags in th
299298
</appSettings>
300299
```
301300

301+
::: zone pivot="platform-windows"
302+
303+
> [!NOTE]
304+
> You do not need to create a web.config file when using Tomcat on Windows App Service.
305+
306+
::: zone-end
307+
302308
Developers running a single application with one deployment slot in their App Service plan can use the following options:
303309

304310
- B1 and S1 instances: `-Xms1024m -Xmx1024m`
@@ -887,11 +893,11 @@ Alternatively, you can use an FTP client to upload the JDBC driver. Follow these
887893
888894
These instructions apply to all database connections. You will need to fill placeholders with your chosen database's driver class name and JAR file. Provided is a table with class names and driver downloads for common databases.
889895
890-
| Database | Driver Class Name | JDBC Driver |
896+
| Database | Driver Class Name | JDBC Driver |
891897
|------------|-----------------------------------------------|------------------------------------------------------------------------------------------|
892898
| PostgreSQL | `org.postgresql.Driver` | [Download](https://jdbc.postgresql.org/download.html) |
893899
| MySQL | `com.mysql.jdbc.Driver` | [Download](https://dev.mysql.com/downloads/connector/j/) (Select "Platform Independent") |
894-
| SQL Server | `com.microsoft.sqlserver.jdbc.SQLServerDriver` | [Download](/sql/connect/jdbc/download-microsoft-jdbc-driver-for-sql-server#download) |
900+
| SQL Server | `com.microsoft.sqlserver.jdbc.SQLServerDriver` | [Download](/sql/connect/jdbc/download-microsoft-jdbc-driver-for-sql-server#download) |
895901
896902
To configure Tomcat to use Java Database Connectivity (JDBC) or the Java Persistence API (JPA), first customize the `CATALINA_OPTS` environment variable that is read in by Tomcat at start-up. Set these values through an app setting in the [App Service Maven plugin](https://github.com/Microsoft/azure-maven-plugins/blob/develop/azure-webapp-maven-plugin/README.md):
897903

0 commit comments

Comments
 (0)