Skip to content

Commit

Permalink
ajout du application.properties
Browse files Browse the repository at this point in the history
  • Loading branch information
julg committed Feb 8, 2024
1 parent d6269f4 commit 4ce7c0d
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#spring.batch.initialize-schema=always

# oracle
spring.datasource.driverClassName=oracle.jdbc.driver.OracleDriver
spring.datasource.url=
spring.datasource.username=
spring.datasource.password=
spring.datasource.hikari.minimumIdle=3
spring.datasource.hikari.maximumPoolSize=15
spring.datasource.hikari.transaction-isolation=READ_COMMITTED

# apres ajout des dependances xdb et xmlparser, erreur : "Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean."
# resolu grace a :
# https://stackoverflow.com/questions/50231736/applicationcontextexception-unable-to-start-servletwebserverapplicationcontext
spring.main.web-application-type=none
spring.profiles.active=

elastic.hostname=
elastic.port=
elastic.scheme=

elastic.userName=
elastic.password=
elastic.protocol=

job.chunk=10
job.throttle=1
# Limite de la clause where, mettre 0 pour tout prendre
job.where-limite=

index.pathTheses=src/main/resources/indexs/theses.json
index.pathPersonnes=src/main/resources/indexs/personnes.json
index.pathThematiques=src/main/resources/indexs/thematiques.json
index.pathRecherchePersonnes=src/main/resources/indexs/recherche_personnes.json
oaiSets.path=src/main/resources/oaisets/listeOaiSets.xml

table.name=
index.name=
table.personne.name=

0 comments on commit 4ce7c0d

Please sign in to comment.