I have one variable which is BigDecimal abc and i have store in database with column_name is ( abc decimal(30,20) ) using Hibernate. so when i save data with abc variable and value = 00.0000000000 it will store in database perfectly, but when i get from database using Hibernate it will store as 0E-10 in BigDecimal abc but i need exact store value in database.
if any one have solution for above problem ??
i have already try to seach in google and also in stackoverflow.