Example usage for org.apache.ibatis.scripting LanguageDriver interface-usage

List of usage examples for org.apache.ibatis.scripting LanguageDriver interface-usage

Introduction

In this page you can find the example usage for org.apache.ibatis.scripting LanguageDriver interface-usage.

Usage

From source file com.esofthead.mycollab.core.persistence.VelocityDriverDeclare.java

/**
 * 
 * @author MyCollab Ltd.
 * @since 4.0
 * 
 */

From source file com.mycollab.db.persistence.VelocityDriverDeclare.java

/**
 * @author MyCollab Ltd.
 * @since 4.0
 */
@Alias("velocity")
public class VelocityDriverDeclare implements LanguageDriver {

From source file jetbrick.template.scripting.JetxLanguageDriver.java

/**
 * Adds FreeMarker templates support to scripting in MyBatis.
 * If you want to change or extend template loader configuration, use can
 * inherit from this class and override {@link #createFreeMarkerConfiguration()} method.
 *
 * @author huangx

From source file org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver.java

/**
 * Adds FreeMarker templates support to scripting in MyBatis. If you want to change or extend template loader
 * configuration, use can inherit from this class and override {@link #createFreeMarkerConfiguration()} method.
 *
 * @author elwood
 */

From source file org.mybatis.scripting.velocity.Driver.java

public class Driver implements LanguageDriver {

    @Override
    public ParameterHandler createParameterHandler(MappedStatement mappedStatement, Object parameterObject,
            BoundSql boundSql) {
        return new DefaultParameterHandler(mappedStatement, parameterObject, boundSql);