List of usage examples for org.apache.ibatis.parsing PropertyParser parse
public static String parse(String string, Properties variables)
From source file:com.baomidou.mybatisplus.MybatisMapperAnnotationBuilder.java
License:Apache License
private Properties convertToProperties(Property[] properties) { if (properties.length == 0) { return null; }/*from w w w .jav a 2 s .co m*/ Properties props = new Properties(); for (Property property : properties) { props.setProperty(property.name(), PropertyParser.parse(property.value(), configuration.getVariables())); } return props; }