我正面临一个问题,与JPA与spring与multiple data-sources。这是我一直都能做到的。但这一次我不明白为什么不起作用了?
在gradle构建或bootRun之后,没有创建或更新任何表。启动时没有编译错误或运行时错误。我快疯了。
你可以找到我的密码附件。
P2BDatabaseConfig.groovy
@Configuration
@EnableTransactionManagement
@EnableJpaRepositories(
entityManagerFactoryRef = "p2bEntityManagerFactory",
transactionManagerRef = "p2bTransactionManager",
basePackages = {"it.project.sol.sharpapi.repo.p2b"}
)
public class P2BDatabaseConfig {
@Bean(name = "p2bDataSource")
@ConfigurationProperties(prefix = "spring.p2b")
@Primary
public DataSource dataSource() {
return DataSourceBuilder.create().build();
}
@PersistenceContext(unitName = "p2bPU")
@Bean(name = "p2bEntityManagerFactory")
@Primary
public LocalContainerEntityManagerFactoryBean p2bEntityManagerFactory(EntityManagerFactoryBuilder builder,
@Qualifier("p2bDataSource") DataSource dataSource) {
return builder.dataSource(dataSource).packages("it.project.sol.sharpapi.entity.p2b").build();
}
@Bean(name = "p2bTransactionManager")
@Primary
public PlatformTransactionManager p2bTransactionManager(
@Qualifier("p2bEntityManagerFactory") EntityManagerFactory p2bEntityManagerFactory) {
return new JpaTransactionManager(p2bEntityManagerFactory);
}
}SharpDatabaseConfig.groovy
@Configuration
@EnableTransactionManagement
@EnableJpaRepositories(
entityManagerFactoryRef = "sharpEntityManagerFactory",
transactionManagerRef = "sharpTransactionManager",
basePackages = {"it.project.sol.sharpapi.repo.sharp"}
)
public class SharpDatabaseConfig {
@Bean(name = "sharpDataSource")
@ConfigurationProperties(prefix = "spring.sharp")
public DataSource dataSource() {
return DataSourceBuilder.create().build();
}
@PersistenceContext(unitName = "sharpPU")
@Bean(name = "sharpEntityManagerFactory")
public LocalContainerEntityManagerFactoryBean sharpEntityManagerFactory(EntityManagerFactoryBuilder builder,
@Qualifier("sharpDataSource") DataSource dataSource) {
return builder.dataSource(dataSource).packages("it.project.sol.sharpapi.entity.sharp").build();
}
@Bean(name = "sharpTransactionManager")
public PlatformTransactionManager sharpTransactionManager(
@Qualifier("sharpEntityManagerFactory") EntityManagerFactory sharpEntityManagerFactory) {
return new JpaTransactionManager(sharpEntityManagerFactory);
}
}application.yml
spring:
profiles:
active: Developement
jpa:
show-sql: true
database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
hibernate:
ddl-auto: update
naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy
dialect: org.hibernate.dialect.MySQL5Dialect
p2b:
url: jdbc:mysql://localhost:3306/p2bv2?autoReconnect=true
username: xxxx
password: xxxx!
testWhileIdle: true
maxActive: 5
validationQuery: SELECT 1
driver-class-name: com.mysql.jdbc.Driver
sharp:
url: jdbc:mysql://localhost:3306/sharp?autoReconnect=true
username: xxxx
password: xxxx!
testWhileIdle: true
maxActive: 5
validationQuery: SELECT 1
driver-class-name: com.mysql.jdbc.DriverP2BDevice.groovy
@Entity(name = "P2BDevice")
@Table(name = "device")
class P2BDevice implements Serializable{
@Id
@GeneratedValue
Long id
@Column(name = "version")
Long version
@Column(name = "date_created")
Date dateCreated
@Column(name = "deleted")
int deleted
@Column(name = "description")
String description
...
}User.groovy
@Entity(name = "User")
@Table(name = "caccapupu")
class User implements Serializable{
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
Long id
@Column(name = "version")
Long version
@Column(name = "username")
String username
@Column(name = "password")
Long password
@Column(name = "date_created")
Date dateCreated
@Column(name = "status")
int status
...
}我可以向您保证,存储库是正确的,甚至是我的类的包位置。
发布于 2019-01-18 11:53:59
尝试显式设置JPA属性。
LocalContainerEntityManagerFactoryBean em =
builder.dataSource(dataSource).packages("it.project.sol.sharpapi.entity.sharp").build();
HashMap<String, Object> properties = new HashMap<>();
properties.put("hibernate.hbm2ddl.auto", "update");
properties.put("hibernate.dialect", "org.hibernate.dialect.MySQL5Dialect");
em.setJpaPropertyMap(properties);https://stackoverflow.com/questions/54252452
复制相似问题