Don*_*Don 8 spring hibernate spring-data spring-data-jpa
我有一个使用 JPA 的 Spring Boot 应用程序,它有 2 个数据源,1 个用于 DB2,1 个用于 SQL Server。
当我尝试将实体保存到 SQL Server 时,没有抛出任何错误,但实体不会持久化到数据库中。我没有看到日志中生成了插入。
提前致谢
这是我执行以尝试保存实体的代码。@成分
public class TestSave {
@Autowired
private BeercupMessageLogRepository repository;
@Scheduled(fixedRate = 500000)
public void reportCurrentTime() {
System.out.println("Testing Save ... ");
// Save the message in the transaction log - TypeId = 1 for Quote
BeercupMessageLog beercupMessage = new BeercupMessageLog(1,"THIS IS A TEST ...", false);
beercupMessage = repository.save(beercupMessage);
System.out.println("Testing save complete ....");
}
}
Run Code Online (Sandbox Code Playgroud)
这里是sql Server配置。
@Configuration
@EnableTransactionManagement
@EnableJpaRepositories(basePackages="com.xxx.beverage.repository.sqlserver",entityManagerFactoryRef = "entityManagerFactory", transactionManagerRef = "transactionManager")
public class sqlserverConfiguration {
@Bean(name="datasource")
@Primary
@ConfigurationProperties(prefix = "sqlserver.datasource")
public DataSource sqlserverDataSource() {
return DataSourceBuilder.create().build();
}
@PersistenceContext(unitName="primary")
@Primary
@Bean(name = "entityManagerFactory")
public LocalContainerEntityManagerFactoryBean sqlserverEntityManagerFactory(EntityManagerFactoryBuilder builder) {
return builder.dataSource(sqlserverDataSource()).persistenceUnit("sqlServer").properties(jpaProperties())
.packages("com.boelter.beverage.model.sqlserver").build(); }
private Map<String, Object> jpaProperties() {
Map<String, Object> props = new HashMap<>();
props.put("spring.jpa.hibernate.naming-strategy","org.hibernate.cfg.DefaultNamingStrategy");
props.put("hibernate.default_schema","dbo");
return props;
}
}
Run Code Online (Sandbox Code Playgroud)
这是 SQL Server 存储库
公共接口 BeercupMessageLogRepository 扩展
CrudRepository<BeercupMessageLog, Long> {
BeercupMessageLog findOne(Long id);
List<BeercupMessageLog> findByMessageTypeId(Long messageTypeId);
List<BeercupMessageLog> findAll();
Run Code Online (Sandbox Code Playgroud)
这是 DB2 配置。
@Configuration
@EnableTransactionManagement
@EnableJpaRepositories(basePackages="com.boelter.beverage.repository.db2",entityManagerFactoryRef = "entityManagerFactory
2", transactionManagerRef = "transactionManager2")
public class db2Configuration {
@Bean(name="db2DataSource")
@ConfigurationProperties(prefix = "db2.datasource")
public DataSource db2DataSource() {
return DataSourceBuilder.create().build();
}
@PersistenceContext(unitName="secondary")
@Bean(name = "entityManagerFactory2")
public LocalContainerEntityManagerFactoryBean db2EntityManagerFactory(EntityManagerFactoryBuilder builder) {
return builder.dataSource(db2DataSource()).persistenceUnit("db2").properties(jpaProperties())
.packages("com.boelter.beverage.model.db2").build(); }
private Map<String, Object> jpaProperties() {
Map<String, Object> props = new HashMap<>();
props.put("spring.jpa.hibernate.naming-strategy","org.hibernate.cfg.DefaultNamingStrategy");
//props.put("spring.jpa.hibernate.naming-strategy","org.hibernate.cfg.ImprovedNamingStrategy");
//props.put("spring.jpa.properties.hibernate.default_schema","R3QASDATA");
//props.put("spring.jpa.show-sql","true");
return props;
}
}
Run Code Online (Sandbox Code Playgroud)
这是实体。
package com.boelter.beverage.model.sqlserver;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import org.springframework.transaction.annotation.Transactional;
@Table (name="[BeercupMessageLog]")
@Entity
@Transactional
public class BeercupMessageLog {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
private long messageId;
@Column(name="MessageTypeId", nullable = false)
private long messageTypeId;
@Column(name="Processed", nullable = false)
private boolean processed;
// Set updatable and insertable to false so JPA does not try to pass a value. The DB has a default
// of the current date if no value is passed
@Column(name="MessageDate", updatable=false, insertable=false)
private Date messageDate;
@Column(name="MessageText", nullable = false)
private String messageText;
protected BeercupMessageLog() {}
public BeercupMessageLog(long messageTypeId, String messageText, boolean processed) {
this.messageTypeId = messageTypeId;
this.messageText = messageText;
this.processed = processed;
}
/**
* @return the messageId
*/
public long getMessageId() {
return messageId;
}
/**
* @param messageId the messageId to set
*/
public void setMessageId(long messageId) {
this.messageId = messageId;
}
/**
* @return the messageTypeId
*/
public long getMessageTypeId() {
return messageTypeId;
}
/**
* @param messageTypeId the messageTypeId to set
*/
public void setMessageTypeId(long messageTypeId) {
this.messageTypeId = messageTypeId;
}
/**
* @return the messageDate
*/
public Date getMessageDate() {
return messageDate;
}
/**
* @param messageDate the messageDate to set
*/
public void setMessageDate(Date messageDate) {
this.messageDate = messageDate;
}
/**
* @return the processed
*/
public boolean isProcessed() {
return processed;
}
/**
* @param processed the processed to set
*/
public void setProcessed(boolean processed) {
this.processed = processed;
}
/**
* @return the messageText
*/
public String getMessageText() {
return messageText;
}
/**
* @param messageText the messageText to set
*/
public void setMessageText(String messageText) {
this.messageText = messageText;
}
@Override
public String toString() {
return String.format(
"BeercupMessage[id=%d, typeId=%d, message='%s']",
messageId, messageTypeId, messageText);
}
}
Run Code Online (Sandbox Code Playgroud)
小智 9
我想更多的是您的 DB2 数据库没有保存,因为问题是您需要为transactionManagerRef未标记数据源、实体管理器工厂和事务管理器的数据库设置自定义@Primary。在这里你配置了transactionManagerRef = "transactionManager2"但你没有将它注入到配置 bean 中。
只需添加db2Configuration如下内容:
@Bean(name = "transactionManager2")
public PlatformTransactionManager accountTransactionManager(EntityManagerFactoryBuilder builder) {
JpaTransactionManager tm = new JpaTransactionManager();
tm.setEntityManagerFactory(db2EntityManagerFactory(builder).getObject());
tm.setDataSource(db2DataSource());
return tm;
}
Run Code Online (Sandbox Code Playgroud)
我遇到了同样的问题,对我来说是 Spring Batch:
public class BatchConfiguration extends DefaultBatchConfigurer {
事实上,我扩展了 DefaultBatchConfigurer 正在创建第二个 EntityManager,因此我的数据源并未将数据持久保存到数据库中。
| 归档时间: |
|
| 查看次数: |
18491 次 |
| 最近记录: |