我正在使用Spring JPA,我需要一个原生查询。使用该查询,我只需要从表中获取两个字段,因此我尝试使用Projections。它不起作用,这是我得到的错误:
org.springframework.core.convert.ConverterNotFoundException: No converter found capable of converting from type [org.springframework.data.jpa.repository.query.AbstractJpaQuery$TupleConverter$TupleBackedMap] to type [com.example.IdsOnly]
我试着严格遵循我链接的那个页面的说明,我试图让我的查询非原生(我实际上需要它是原生的,如果我使用投影,顺便说一句?),但我总是得到那个错误。
如果我使用一个接口它可以工作,但结果是代理,我真的需要它们是“正常结果”,我可以变成json。
所以,这是我的代码。实体:
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@Entity
@Table(name = "TestTable")
public class TestTable {
@Id
@Basic(optional = false)
@GeneratedValue(strategy = GenerationType.SEQUENCE)
@Column(name = "Id")
private Integer id;
@Column(name = "OtherId")
private String otherId;
@Column(name = "CreationDate")
@Temporal(TemporalType.TIMESTAMP)
private Date creationDate;
@Column(name = "Type")
private Integer type;
}
投影类:
import lombok.Value;
@Value // This annotation fills in the "hashCode" and "equals" methods, plus the all-arguments constructor
public class IdsOnly {
private final Integer id;
private final String otherId;
}
存储库:
public interface TestTableRepository extends JpaRepository<TestTable, Integer> {
@Query(value = "select Id, OtherId from TestTable where CreationDate > ?1 and Type in (?2)", nativeQuery = true)
public Collection<IdsOnly> findEntriesAfterDate(Date creationDate, List<Integer> types);
}
尝试获取数据的代码:
@Autowired
TestTableRepository ttRepo;
...
Date theDate = ...
List<Integer> theListOfTypes = ...
...
Collection<IdsOnly> results = ttRepo.findEntriesAfterDate(theDate, theListOfTypes);
感谢您的帮助。我真的不明白我做错了什么。
答案 0 :(得分:9)
查询应使用constructor expression:
@Query("select new com.example.IdsOnly(t.id, t.otherId) from TestTable t where t.creationDate > ?1 and t.type in (?2)")
我不知道Lombok,但请确保有一个构造函数将两个ID作为参数。
答案 1 :(得分:6)
有了弹簧数据,您可以切割中间人并简单地使用
public interface IdsOnly {
Integer getId();
String getOtherId();
}
并使用本机查询,例如;
@Query(value = "Id, OtherId from TestTable where CreationDate > ?1 and Type in (?2)", nativeQuery = true)
public Collection<IdsOnly> findEntriesAfterDate(Date creationDate, List<Integer> types);
签出https://docs.spring.io/spring-data/jpa/docs/current/reference/html/#projections
答案 2 :(得分:3)
如果您想保留原生,JPA 2.1会引入一个有趣的ConstructorResult功能。
答案 3 :(得分:0)
我需要映射2个表中的值,并在存储库文件中像这样解决
@Query("select distinct emp.user.id as id, " +
"concat(emp.user.firstName, ' ',emp.user.lastName, ' ',emp.extensionNumber) as name from NmsEmployee emp " +
" where emp.domain.id = :domainId and (emp.activeUntil= null or emp.activeUntil > :lLogin) ")
List<Selectable> getSelcByDomainId( @Param("domainId") Long domainId, @Param("lLogin") ZonedDateTime lLogin);
可选位置
public interface Selectable {
Long getId();
String getName();
}
答案 4 :(得分:0)
您可以在存储库类中返回对象数组(列表)的列表作为本机查询方法的返回类型。
@Query(
value = "SELECT [type],sum([cost]),[currency] FROM [CostDetails] " +
"where product_id = ? group by [type],[currency] ",
nativeQuery = true
)
public List<Object[]> getCostDetailsByProduct(Long productId);
for(Object[] obj : objectList){
String type = (String) obj[0];
Double cost = (Double) obj[1];
String currency = (String) obj[2];
}
答案 5 :(得分:0)
@Query(value = "select isler.saat_dilimi as SAAT, isler.deger as DEGER from isler where isler.id=:id", nativeQuery = true)
List<Period> getById(@Param("id") Long id);
public interface Period{
Long getDEGER();
Long getSAAT();
}
如上面给出的本机查询的示例代码所示,将返回值强制转换为任何值,例如“ SAAT”,“ DEGER”,然后定义具有getDEGER()和getSAAT()的接口“ period”。即使我不明白为什么get之后的参数必须为大写,但在小写情况下却无法正常工作。即。与getDeger()的接口,getSaat()在我的情况下无法正常工作。