Short README (in the project repo) stating installed versions (JDK, NetBeans, Tomcat, Git) and machine OS version.
A Git repository initialized (can be private) with a top-level env-check/ folder containing the README and screenshots.
Evaluation: Pass/Fail for correct setup; small points (5–10%) for timeliness and completeness.
Download JDK 8 (1.8.0_231 or equivalent) from a trusted provider (Oracle/Adoptium/etc.).
Run the installer and install to the default path or a path such as:
1
C:\Program Files\Java\jdk1.8.0_231
Option 1:
1
C:\Program Files\Java\jdk1.8.0_231\bin
Option 2: Set via an elevated Command Prompt (one-line):
setx PATH "C:\Program Files\Java\jdk1.8.0_231\bin" /M
java -version
javac -version
> Expected output should include 1.8.0_231 (or the JDK 8 build you installed).
1
C:\apache-tomcat-10.0.23
1
2
3
4
5
6
7
8
- Save the file.
3. Start Tomcat:
- Double-click C:\apache-tomcat-10.0.23\bin\startup.bat or run as admin:
```cmd
cd C:\apache-tomcat-10.0.23\bin
startup.bat
1
http://localhost:8080
You should see the Tomcat welcome page.
Firewall note: If Tomcat page fails to appear, open Windows Firewall settings and allow inbound TCP port 8080 or allow Java/Tomcat process.
Deliverable check: Screenshot of NetBeans Services showing Tomcat and “Started” status.
NetBeans includes Maven, but you may want Maven on PATH:
mvn -v
Expected: Maven version output and Java home pointing to your JDK.