Skip to content

Commit

Permalink
DATAJPA-113 - Improved DI for QueryDslRepositorySupport.
Browse files Browse the repository at this point in the history
Removed @required annotation from the setter for EntityManager property. The annotation triggered a dependency check that was not aware of the EntityManager being injected by a PersistenceAnnotationBeanPostProcessor. As we already have a validation callback using @PostConstruct we can simply rely on the not-null check for the EntityManager being implemented there.
  • Loading branch information
odrotbohm committed Dec 3, 2011
1 parent 75fd6bf commit 036b6af
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
/*
* 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.support;

import javax.annotation.PostConstruct;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;

import org.springframework.beans.factory.annotation.Required;
import org.springframework.stereotype.Repository;
import org.springframework.util.Assert;

Expand Down Expand Up @@ -35,7 +49,6 @@ public abstract class QueryDslRepositorySupport {
*
* @param entityManager must not be {@literal null}
*/
@Required
public void setEntityManager(EntityManager entityManager) {

Assert.notNull(entityManager);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
* 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.support;

import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.jpa.repository.support.QueryDslRepositorySupportTests.UserRepository;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

/**
* Integration test for the setup of beans extending {@link QueryDslRepositorySupport}.
*
* @author Oliver Gierke
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:querydsl.xml")
public class QueryDslRepositorySupportIntegrationTests {

@Autowired
UserRepository repository;

@Test
public void createsRepoCorrectly() {
assertThat(repository, is(notNullValue()));
}
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/*
* 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.support;

import static org.hamcrest.Matchers.*;
Expand Down Expand Up @@ -99,7 +114,7 @@ public void rejectsUnsetEntityManager() throws Exception {
repositoryImpl.validate();
}

private static interface UserRepository {
interface UserRepository {

List<User> findUsersByLastname(String firstname);

Expand All @@ -108,7 +123,7 @@ private static interface UserRepository {
long deleteAllWithLastname(String lastname);
}

private static class UserRepositoryImpl extends QueryDslRepositorySupport implements UserRepository {
static class UserRepositoryImpl extends QueryDslRepositorySupport implements UserRepository {

private static final QUser user = QUser.user;

Expand Down
10 changes: 10 additions & 0 deletions src/test/resources/querydsl.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

<import resource="infrastructure.xml" />

<bean class="org.springframework.data.jpa.repository.support.QueryDslRepositorySupportTests.UserRepositoryImpl" />

</beans>

0 comments on commit 036b6af

Please sign in to comment.