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
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -273,15 +273,14 @@ If your application uses [Logback](https://logback.qos.ch/) or [Log4j](https://l
273
273
274
274
## Customization and tuning
275
275
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:
-[Configure the Kudu site](https://github.com/projectkudu/kudu/wiki/Configurable-settings#linux-on-app-service-settings)
283
283
284
-
285
284
### Set Java runtime options
286
285
287
286
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
299
298
</appSettings>
300
299
```
301
300
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
+
302
308
Developers running a single application with one deployment slot in their App Service plan can use the following options:
303
309
304
310
- B1 and S1 instances: `-Xms1024m -Xmx1024m`
@@ -887,11 +893,11 @@ Alternatively, you can use an FTP client to upload the JDBC driver. Follow these
887
893
888
894
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.
| MySQL | `com.mysql.jdbc.Driver` | [Download](https://dev.mysql.com/downloads/connector/j/) (Select "PlatformIndependent") |
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) |
895
901
896
902
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):
0 commit comments