Add missing authorization properties in Application. Add hibernate dialect for postgres12
This commit is contained in:
parent
524aecc002
commit
5965836486
|
@ -13,6 +13,7 @@ import org.springframework.context.annotation.PropertySources;
|
|||
@SpringBootApplication(scanBasePackages = {"eu.dnetlib.developers"})
|
||||
@PropertySources({
|
||||
@PropertySource("classpath:authentication.properties"),
|
||||
@PropertySource("classpath:authorization.properties"),
|
||||
@PropertySource("classpath:developers.properties"),
|
||||
@PropertySource(value = "classpath:dnet-override.properties", ignoreResourceNotFound = true)
|
||||
})
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
developers.datasource.driver=org.postgresql.Driver
|
||||
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
|
||||
|
||||
## API Documentation Properties
|
||||
api.title = Developers API
|
||||
|
|
Loading…
Reference in New Issue