Java 实现

提供的每个组件都使用该类,而该类又使用接口的实现。 其操作方式与典型的数据访问对象 (DAO) 类似,并提供 find、persist、executeUpdate 等方法。 对于大多数用例,默认实现 () 应该就足够了。 但是,如果需要自定义行为,您可以指定自己的实现。o.s.i.jpa.core.JpaExecutoro.s.i.jpa.core.JpaOperationsJpaOperationso.s.i.jpa.core.DefaultJpaOperationsspring-doc.cn

要初始化 ,您必须使用接受以下之一的构造函数之一:JpaExecutorspring-doc.cn

以下示例显示了如何使用 an 初始化 a 并在出站网关中使用它:JpaExecutorentityManagerFactoryspring-doc.cn

@Bean
public JpaExecutor jpaExecutor() {
    JpaExecutor executor = new JpaExecutor(this.entityManagerFactory);
    executor.setJpaParameters(Collections.singletonList(new JpaParameter("firstName", null, "#this")));
    executor.setUsePayloadAsParameterSource(true);
    executor.setExpectSingleResult(true);
    return executor;
}

@ServiceActivator(inputChannel = "getEntityChannel")
@Bean
public MessageHandler retrievingJpaGateway() {
    JpaOutboundGateway gateway = new JpaOutboundGateway(jpaExecutor());
    gateway.setGatewayType(OutboundGatewayType.RETRIEVING);
    gateway.setOutputChannelName("resultsChannel");
    return gateway;
}