我正在使用Spring Data JPA:
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.7.1.RELEASE</version>
</dependency>
使用Spring 4.1.4.RELEASE和Hibernate 4.3.8.Final。
当我使用findAll
查询时,集合返回包含null
值,但集合的大小正确。
相关摘要:
public interface UnitRepository extends JpaRepository<Unit, Integer> {
@Transactional
@Query("SELECT t FROM Unit t WHERE t.clientNo = ?1")
public List<Unit> findByUnitNo(String clientNo);
怎么办?