All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jasmine.testconfigure.framework.MybatisPlusTestProperties Maven / Gradle / Ivy

There is a newer version: 1.3.8
Show newest version
package jasmine.testconfigure.framework;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

/**
 * @author mh.z
 */
@Component
public class MybatisPlusTestProperties {

    @Value("${jasmine.data.tenant.enabled:false}")
    private Boolean tenantEnabled;

    @Value("${mybatis-plus.mapperLocations:classpath*:/jasmine/**/mapper/*.xml}")
    private String[] mapperLocations;

    public Boolean getTenantEnabled() {
        return tenantEnabled;
    }

    public String[] getMapperLocations() {
        return mapperLocations;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy