/* * Copyright 2011 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 * * http://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; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Arrays; import java.util.Collection; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import javax.persistence.TypedQuery; import javax.persistence.criteria.CriteriaBuilder; import javax.persistence.criteria.CriteriaQuery; import javax.persistence.criteria.ParameterExpression; import javax.persistence.criteria.Root; import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.data.jpa.domain.sample.User; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.transaction.annotation.Transactional; /** * @author Oliver Gierke */ @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration({ "classpath:application-context.xml" // , "classpath:eclipselink.xml" // , "classpath:openjpa.xml" }) @Transactional public class SimpleJpaParameterBindingTests { @PersistenceContext EntityManager em; @Test @Ignore public void bindArray() { User user = new User("Dave", "Matthews", "foo@bar.de"); em.persist(user); em.flush(); CriteriaBuilder builder = em.getCriteriaBuilder(); CriteriaQuery<User> criteria = builder.createQuery(User.class); Root<User> root = criteria.from(User.class); ParameterExpression<String[]> parameter = builder.parameter(String[].class); criteria.where(root.get("firstname").in(parameter)); TypedQuery<User> query = em.createQuery(criteria); query.setParameter(parameter, new String[] { "Dave", "Carter" }); List<User> result = query.getResultList(); assertThat(result.isEmpty(), is(false)); } @Test @SuppressWarnings("rawtypes") public void bindCollection() { User user = new User("Dave", "Matthews", "foo@bar.de"); em.persist(user); em.flush(); CriteriaBuilder builder = em.getCriteriaBuilder(); CriteriaQuery<User> criteria = builder.createQuery(User.class); Root<User> root = criteria.from(User.class); ParameterExpression<Collection> parameter = builder.parameter(Collection.class); criteria.where(root.get("firstname").in(parameter)); TypedQuery<User> query = em.createQuery(criteria); query.setParameter(parameter, Arrays.asList("Dave")); List<User> result = query.getResultList(); assertThat(result.isEmpty(), is(false)); assertThat(result.get(0), is(user)); } }