Error 500: java.math.BigDecimal: method <init>(I)V not found
This occurs when trying to print a BigDecimal No: on a JSP page For this I have used a Bean and a JSP In the JSP I call a method of the Bean which returns a BigDecimal and then it is printed on to browser using out.println(value);
If I use the BigDecimal value directly (no bean usage) then it will print the exact value no issues with that.
The problem arises only when trying it with Bean.
Please reply if you know or have any idea to resolve