mybatis查询mysql的point类型解析
时间: 2023-10-08 19:12:51 浏览: 227
Mybatis查询方式
MyBatis对MySQL的Point类型进行解析时,可以通过以下方法进行配置:
1. 在MyBatis的配置文件中,添加如下配置:
```
<typeHandlers>
<typeHandler javaType="com.mysql.cj.jdbc.MysqlType" jdbcType="POINT" handler="org.apache.ibatis.type.PointTypeHandler"/>
</typeHandlers>
```
2. 在实体类中,添加一个属性来表示Point类型:
```
private Point location;
```
3. 在Mapper.xml文件中,使用MyBatis提供的PointTypeHandler来处理Point类型的数据:
```
<resultMap id="pointResultMap" type="com.example.entity.PointEntity">
<result column="location" property="location" typeHandler="org.apache.ibatis.type.PointTypeHandler"/>
</resultMap>
```
以上是MyBatis查询MySQL的Point类型的解析方法。
阅读全文