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

top.openyuan.jpa.specification.handler.impl.StartsWithPredicateHandler Maven / Gradle / Ivy

package top.openyuan.jpa.specification.handler.impl;

import top.openyuan.jpa.specification.annotation.StartsWith;
import top.openyuan.jpa.specification.handler.AbstractPredicateHandler;

import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.From;
import javax.persistence.criteria.Predicate;
import java.lang.annotation.Annotation;

/**
 * 构建“按前缀模糊匹配”({@code AND field LIKE 'xx%'})场景的 {@link Predicate} 处理器.
 *
 * @author lzy on 2020-01-25
 * @since v1.0.0
 */
public class StartsWithPredicateHandler extends AbstractPredicateHandler {

    @Override
    public Class getAnnotation() {
        return StartsWith.class;
    }

    @Override
    public  Predicate buildPredicate(
            CriteriaBuilder criteriaBuilder, From from, String fieldName, Object value, Annotation annotation) {
        return criteriaBuilder.and(super.buildStartsWithPredicate(criteriaBuilder, from, fieldName, value));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy