> On Tue, Aug 4, 2020 at 2:18 PM Christopher Schultz wrote: > > So how do you switch Java versions?
In case anyone care to know... I have a directory called C:\Java Here we have <DIR> jdk1.8.0_25 <SYMLINKD> jdk1.8 [jdk1.8.0_25] And JAVA_HOME=C:\Java\jdk1.8 And upgrade is then performed with: Unzip jdk1.8.0_211.zip Rmdir jdk1.8 Mklink /D jdk1.8 jdk1.8.0_211 And then all tomcat instances has to be restartet. A Tomcat minor upgrade is done in a similar way. We have a symlink like C:\Apache\tomcat-9.0 which point to C:\Apache\apache-tomcat-9.0.36 and we unzip a new version and change the symlink. ./hans