/*
 * Copyright 2013-2020 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.springframework.data.jpa.repository.query;

import java.lang.reflect.Method;
import java.util.Date;
import java.util.List;

import javax.persistence.TemporalType;

import org.springframework.core.MethodParameter;
import org.springframework.data.jpa.repository.Temporal;
import org.springframework.data.jpa.repository.query.JpaParameters.JpaParameter;
import org.springframework.data.repository.query.Parameter;
import org.springframework.data.repository.query.Parameters;
import org.springframework.lang.Nullable;

Custom extension of Parameters discovering additional query parameter annotations.
Author:Thomas Darimont, Mark Paluch
/** * Custom extension of {@link Parameters} discovering additional query parameter annotations. * * @author Thomas Darimont * @author Mark Paluch */
public class JpaParameters extends Parameters<JpaParameters, JpaParameter> {
Creates a new JpaParameters instance from the given Method.
Params:
  • method – must not be null.
/** * Creates a new {@link JpaParameters} instance from the given {@link Method}. * * @param method must not be {@literal null}. */
public JpaParameters(Method method) { super(method); } private JpaParameters(List<JpaParameter> parameters) { super(parameters); } /* * (non-Javadoc) * @see org.springframework.data.repository.query.Parameters#createParameter(org.springframework.core.MethodParameter) */ @Override protected JpaParameter createParameter(MethodParameter parameter) { return new JpaParameter(parameter); } /* * (non-Javadoc) * @see org.springframework.data.repository.query.Parameters#createFrom(java.util.List) */ @Override protected JpaParameters createFrom(List<JpaParameter> parameters) { return new JpaParameters(parameters); }
Custom Parameter implementation adding parameters of type Temporal to the special ones.
Author:Thomas Darimont, Oliver Gierke
/** * Custom {@link Parameter} implementation adding parameters of type {@link Temporal} to the special ones. * * @author Thomas Darimont * @author Oliver Gierke */
static class JpaParameter extends Parameter { private final @Nullable Temporal annotation; private @Nullable TemporalType temporalType;
Creates a new JpaParameter.
Params:
  • parameter – must not be null.
/** * Creates a new {@link JpaParameter}. * * @param parameter must not be {@literal null}. */
JpaParameter(MethodParameter parameter) { super(parameter); this.annotation = parameter.getParameterAnnotation(Temporal.class); this.temporalType = null; if (!isDateParameter() && hasTemporalParamAnnotation()) { throw new IllegalArgumentException( Temporal.class.getSimpleName() + " annotation is only allowed on Date parameter!"); } } /* * (non-Javadoc) * @see org.springframework.data.repository.query.Parameter#isBindable() */ @Override public boolean isBindable() { return super.isBindable() || isTemporalParameter(); }
Returns:true if this parameter is of type Date and has an Temporal annotation.
/** * @return {@literal true} if this parameter is of type {@link Date} and has an {@link Temporal} annotation. */
boolean isTemporalParameter() { return isDateParameter() && hasTemporalParamAnnotation(); }
Returns:the TemporalType on the Temporal annotation of the given Parameter.
/** * @return the {@link TemporalType} on the {@link Temporal} annotation of the given {@link Parameter}. */
@Nullable TemporalType getTemporalType() { if (temporalType == null) { this.temporalType = annotation == null ? null : annotation.value(); } return this.temporalType; }
Throws:
Returns:the required TemporalType on the Temporal annotation of the given Parameter.
Since:2.0
/** * @return the required {@link TemporalType} on the {@link Temporal} annotation of the given {@link Parameter}. * @throws IllegalStateException if the parameter does not define a {@link TemporalType}. * @since 2.0 */
TemporalType getRequiredTemporalType() throws IllegalStateException { TemporalType temporalType = getTemporalType(); if (temporalType != null) { return temporalType; } throw new IllegalStateException(String.format("Required temporal type not found for %s!", getType())); } private boolean hasTemporalParamAnnotation() { return annotation != null; } private boolean isDateParameter() { return getType().equals(Date.class); } } }