I use the @RequestParam annotation to get query parameters and use them to insert values into the database. I installed a controller to redirect to the same page that contains text fields for the user to enter values that are read using the @RequestParam annotation.
But after I enter the values in the text fields and click "Submit", it gives this error
Request processing error; The nested exception is java.lang.IllegalArgumentException: the argument type name [java.lang.String] is not available, and parameter name information is also not found in the class file.
I am new to Spring 3 and cannot understand the error. Someone can shed light on the same thing.
Thanks in advance, Vivec
Vivek source
share