Skip to content

Commit f7b8061

Browse files
authored
Fix typos for Tomcat context.xml
This issue was already fixed and merged in #205274 but raised again. Context parameters are switched in the context.xml content for Tomcat. The environment settings passed as CATALINA_OPTS do not correspond to the ones used in the context.xml. username was assigned to url password assigned to username url assigned to password ------- cc: @JasonFreeberg
1 parent b9d2170 commit f7b8061

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -950,10 +950,10 @@ Next, determine if the data source should be available to one application or to
950950
<Resource
951951
name="jdbc/dbconnection"
952952
type="javax.sql.DataSource"
953-
url="${dbuser}"
953+
url="${connURL}"
954954
driverClassName="<insert your driver class name>"
955-
username="${dbpassword}"
956-
password="${connURL}"
955+
username="${dbuser}"
956+
password="${dbpassword}"
957957
/>
958958
</Context>
959959
```

0 commit comments

Comments
 (0)