在MyBatis中,可以通过以下方式引用属性:
${}
占位符来引用属性,例如:<select id="selectUser" parameterType="int" resultType="User">
SELECT * FROM users WHERE id = ${userId}
</select>
@Value
注解来引用属性,例如:@Value("${mybatis.mapperLocations}")
private String mapperLocations;
${}
占位符来引用属性,例如:<properties resource="mybatis-config.properties"/>