Thanks a lot! That solves the problem. :D
Type: Posts; User: nondescriptive; Keyword(s):
Thanks a lot! That solves the problem. :D
Currently, when the file parameter is null or empty in the form, the web application throws an error. I have even checked for the case when file is empty but it doesn’t seem to work. Does anyone know...
hi spring community,
To extract parameters from get string, we can do it as follows:
@RequestMapping(value="/sub/{Sub}/body/{Body}/email/{Email}/domain/{Domain}", method=RequestMethod.GET)...
Does the above code expect home.jsp to be in this path /mvc-basic/name/WEB-INF/views/home.jsp?
hi spring community,
here is the code for my controller class
package edu.byu.cio.test.web.Controller;
import org.springframework.stereotype.Controller;
import...
@RequestMapping(value = "/compare", method = RequestMethod.GET)
public String compare(@RequestParam("input1") String input1,@RequestParam("input2") String input2, Model model) {
int...