I am working on a Spring project where there are two controllers
AddOwnerForm.java & EditOwnerForm.java. Both the forwarding the flow to form.jsp
AddOwnerForm passes a new Owner object to
jsp whereas EditOwnerForm fetches the Owner object from the db then passes it to the jsp.
Below is the JSP code.
Form.jsp
I don't understand this code snippet
A. How is the Jstl tag checking if the Owner object is new. Is "new" a keyword for JSTL?
B. Why are they using a PUT method for editing the owner why not POST?