mybatis中properties的默认值设置

avatar
作者
筋斗云
阅读量:0

可以在MyBatis的配置文件中使用properties元素来设置默认值,如下所示:

<properties resource="mybatis.properties">     <property name="pageSize" value="10"/> </properties> 

在上面的配置中,可以在mybatis.properties文件中设置pageSize的值,如果mybatis.properties文件中没有定义pageSize属性,则默认值为10。

另外,也可以在properties元素中直接设置默认值,如下所示:

<properties>     <property name="pageSize" value="10"/> </properties> 

在这种情况下,pageSize的默认值为10。当在SQL语句中引用pageSize属性时,如果没有在配置文件中设置具体的值,则会使用默认值。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!