可以实现BaseTypeHandler,自定义 TypeHandler。
通常我们在使用BigDecimal的时候,从数据库中查询出来,由于将计算机的运算方式,太大的数会被转换成科学计数法来显示
那么我们就可以借助TypeHandler来解决了,简而言之就是在数据进出数据库之前,对其进行转换。
那么,这里有两种方式,一种是局部解决,一种是全局解决问题,针对不同需求场景,选择不同的方式即可。
首先需要我们自定义一个处理类来手动处理,继承BaseTypeHandler即可。
@MappedTypes(BigDecimal.class)
public class CustomBigDecimalHandler extends BaseTypeHandler<BigDecimal> {
@Override
public void setNonNullParameter(PreparedStatement ps, int i,
BigDecimal parameter, JdbcType jdbcType) throws SQLException {
ps.setBigDecimal(i, parameter);
}
//通过列名
@Override
public BigDecimal getNullableResult(ResultSet rs, String columnName) throws SQLException {
return toPlainStringBigDecimal(rs.getBigDecimal(columnName));
}
//通过列索引
@Override
public BigDecimal getNullableResult(ResultSet rs, int columnIndex) throws SQLException {
return toPlainStringBigDecimal(rs.getBigDecimal(columnIndex));
}
//针对存储过程
@Override
public BigDecimal getNullableResult(CallableStatement cs, int columnIndex) throws SQLException {
return toPlainStringBigDecimal(cs.getBigDecimal(columnIndex));
}
private BigDecimal toPlainStringBigDecimal(BigDecimal decimal) {
if(decimal != null) {
return new BigDecimal(decimal.toPlainString());
}
return null;
}
}
创建实体类
@Data
@TableName(value = "wage",autoResultMap = true)
public class Wage {
@TableId("ID")
private String id;
@TableField(value = "MONEY",typeHandler = CustomBigDecimalHandler.class)
private String money;
}
当然,这样注解方式只适合你使用mybatis-plus自带的查询,如果是xml写的语句,那么你需要这样做即可;
<!--查询 -->
<resultMap id="wageMapperResultMap" type="org.spring.springboot.entity.Wage">
<result column="id" jdbcType="INTEGER" property="id"></result>
<result column="money" jdbcType="Decimal" property="MONEY" typeHandler="org.spring.springboot.config.CustomBigDecimalHandler"></result>
</resultMap>
<select id="selectWageById" resultMap="wageMapperResultMap">
select * from Wage where id = #{id}
</select>
<!--插入 -->
<insert id="insertWage" parameterType="org.spring.springboot.entity.Wage">
insert into student (id,name,course,score) values
<foreach collection="list" item="wage" separator=",">
(#{student.id},#{wage.money,typeHandler=org.spring.springboot.config.CustomBigDecimalHandler})
</foreach>
</insert>
如果你想针对某个类型的字段进行处理且全局生效,那么也有就几种方式:
@Slf4j
@Configuration
@ComponentScan("boot")
@MapperScan(basePackages = {"boot.*.mapper", "boot.mapper"})
public class MybatisPlusConfig {
@Bean(name = "sqlSessionFactorySystem")
public SqlSessionFactory sqlSessionFactoryOne(@Qualifier("dataSourceSystem") DataSource dataSource) throws Exception {
return createSqlSessionFactory(dataSource);
}
public SqlSessionFactory createSqlSessionFactory(DataSource dataSource) throws Exception {
MybatisSqlSessionFactoryBean bean = new MybatisSqlSessionFactoryBean();
//全局配置
//GlobalConfig globalConfig = new GlobalConfig();
//配置填充器
//globalConfig.setMetaObjectHandler(new MybatisPlusMetaObjectHandler());
//bean.setGlobalConfig(globalConfig);
bean.setTypeHandlers(new CustomBigDecimalHandler());
return bean.getObject();
}
}
<configuration>
<typeHandlers>
<typeHandler handler="com.xxx.typehandler.CustomBigDecimalHandler"/>
</typeHandlers>
</configuration>
mybatis-plus:
type-handlers-package: jnpf.config