You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Configuration// Activer Spring Data JPA et indiquer les packages où se trouvent les interfaces@EnableJpaRepositories("fr.pizzeria.repos")
publicclassPizzaAppConfig {
@BeanpublicEntityManagerFactoryentityManagerFactory(DataSourceds) {
//...
}
@BeanpublicPlatformTransactionManagertransactionManager(EntityManagerFactoryemf) {
//...
}
}