An error occurred while loading the file. Please try again.
-
Eduard Frankford authored3c5ac424
application.yml 5.44 KiB
# ===================================================================
# Spring Boot configuration.
#
# This configuration is used for unit/integration tests.
#
# More information on profiles: https://www.jhipster.tech/profiles/
# More information on configuration properties: https://www.jhipster.tech/common-application-properties/
# ===================================================================
# ===================================================================
# Standard Spring Boot properties.
# Full reference is available at:
# http://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html
# ===================================================================
spring:
profiles:
# Uncomment the following line to enable tests against production database type rather than H2, using Testcontainers
#active: testcontainers
application:
name: gitsearch
datasource:
type: com.zaxxer.hikari.HikariDataSource
url: jdbc:h2:mem:gitsearch;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
name:
username:
password:
hikari:
auto-commit: false
jackson:
serialization:
write-durations-as-timestamps: false
jpa:
database-platform: io.github.jhipster.domain.util.FixedH2Dialect
open-in-view: false
show-sql: false
hibernate:
ddl-auto: none
naming:
physical-strategy: org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
implicit-strategy: org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy
properties:
hibernate.id.new_generator_mappings: true
hibernate.connection.provider_disables_autocommit: true
hibernate.cache.use_second_level_cache: false
hibernate.cache.use_query_cache: false
hibernate.generate_statistics: false
hibernate.hbm2ddl.auto: validate
hibernate.jdbc.time_zone: UTC
data:
elasticsearch:
properties:
path:
home: target/elasticsearch
elasticsearch:
rest:
uris: http://localhost:29200
liquibase:
contexts: test
mail:
host: localhost
main:
allow-bean-definition-overriding: true
messages:
basename: i18n/messages
task:
execution:
thread-name-prefix: gitsearch-task-
pool:
core-size: 1