As part of a tutorial, I'm creating a form (.jsp), which uses a controller (.java) to decide which page to open next. When I reference the controller and open the web page, I get:
WARNING: No file found for: /src/Controller
The reference to the controller is found in /web/Edit.jsp
<form action="/src/Controller">
The controller is found in /src/Controller.java
What am I doing wrong?