/
developer.bami
/
DFM
Обзор
Документация
Войти
/
developer.bami
/
DFM
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
jhipster_4_dev_pg/application.yml
233 строки
7 KB
Michael
save setup changes for local pg as db server at dev environment
28 фев 2025, 18:23
28 фев 2025, 18:23
d51d3e0
Код
Авторство
О чём код?
# =================================================================== # Spring Boot configuration. # # This configuration will be overridden by the Spring profile you use, # for example application-dev.yml if you use the "dev" profile. # # 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 # =================================================================== --- # Conditionally disable springdoc on missing api-docs profile spring: config: activate: on-profile: '!api-docs' springdoc: api-docs: enabled: false --- management: endpoints: web: base-path: /management exposure: include: - configprops - env - health - info - jhimetrics - jhiopenapigroups - logfile - loggers - prometheus - threaddump - caches - liquibase endpoint: health: show-details: when_authorized roles: 'ROLE_ADMIN' probes: enabled: true group: liveness: include: livenessState readiness: include: readinessState,db jhimetrics: enabled: true info: git: mode: full env: enabled: true health: mail: enabled: false # When using the MailService, configure an SMTP server and set this to true prometheus: metrics: export: enabled: true step: 60 observations: key-values: application: ${spring.application.name} metrics: enable: http: true jvm: true logback: true process: true system: true distribution: percentiles-histogram: all: true percentiles: all: 0, 0.5, 0.75, 0.95, 0.99, 1.0 data: repository: autotime: enabled: true tags: application: ${spring.application.name} spring: application: name: Request docker: compose: enabled: false lifecycle-management: start-only file: src/main/docker/services.yml profiles: # The commented value for `active` can be replaced with valid Spring profiles to load. # Otherwise, it will be filled in by maven when building the JAR file # Either way, it can be overridden by `--spring.profiles.active` value passed in the commandline or `-Dspring.profiles.active` set in `JAVA_OPTS` active: 'dev' group: dev: - dev - api-docs # Uncomment to activate TLS for the dev profile #- tls jmx: enabled: false data: jpa: repositories: bootstrap-mode: deferred jpa: open-in-view: false properties: hibernate.jdbc.time_zone: UTC hibernate.timezone.default_storage: NORMALIZE hibernate.type.preferred_instant_jdbc_type: TIMESTAMP hibernate.id.new_generator_mappings: true hibernate.connection.provider_disables_autocommit: true hibernate.cache.use_second_level_cache: true hibernate.cache.use_query_cache: false hibernate.generate_statistics: false # modify batch size as necessary hibernate.jdbc.batch_size: 25 hibernate.order_inserts: true hibernate.order_updates: true hibernate.query.fail_on_pagination_over_collection_fetch: true hibernate.query.in_clause_parameter_padding: true hibernate: ddl-auto: none naming: physical-strategy: org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy implicit-strategy: org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy messages: basename: i18n/messages main: allow-bean-definition-overriding: true mvc: problemdetails: enabled: true security: oauth2: resourceserver: jwt: authority-prefix: '' authorities-claim-name: auth task: execution: thread-name-prefix: request-task- pool: core-size: 2 max-size: 50 queue-capacity: 10000 scheduling: thread-name-prefix: request-scheduling- pool: size: 2 thymeleaf: mode: HTML output: ansi: console-available: true server: servlet: session: cookie: http-only: true springdoc: show-actuator: true # Properties to be exposed on the /info management endpoint info: # Comma separated list of profiles that will trigger the ribbon to show display-ribbon-on-profiles: 'dev' # =================================================================== # JHipster specific properties # # Full reference is available at: https://www.jhipster.tech/common-application-properties/ # =================================================================== jhipster: clientApp: name: 'requestApp' # By default CORS is disabled. Uncomment to enable. # cors: # allowed-origins: "http://localhost:8100,http://localhost:9000" # allowed-methods: "*" # allowed-headers: "*" # exposed-headers: "Authorization,Link,X-Total-Count,X-${jhipster.clientApp.name}-alert,X-${jhipster.clientApp.name}-error,X-${jhipster.clientApp.name}-params" # allow-credentials: true # max-age: 1800 mail: from: Request@localhost api-docs: default-include-pattern: /api/** management-include-pattern: /management/** title: Request API description: Request API documentation version: 0.0.1 terms-of-service-url: contact-name: contact-url: contact-email: license: unlicensed license-url: security: authentication: jwt: # This token must be encoded using Base64 and be at least 256 bits long (you can type `openssl rand -base64 64` on your command line to generate a 512 bits one) base64-secret: MTcwZTNmMTZiNTZiN2ZlYjA1OGJiOGE0NjQ0NTllNzJlMWU4OTMzYWI5Yjc5ZDY4ZTg3ZjNjZjI0NWY5NTZlMjRmYzE5YTM5YzJhOWVkYmMwMTlhZWEwMmRiMGRhZTljZTdkY2ExMGEwZTllOThhYWQxZDIyZWQ4NGZlYmNhMzM= # Token is valid 24 hours token-validity-in-seconds: 86400 token-validity-in-seconds-for-remember-me: 2592000 content-security-policy: "default-src 'self'; frame-src 'self' data:; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://storage.googleapis.com; style-src 'self' 'unsafe-inline'; img-src 'self' data:; font-src 'self' data:" # =================================================================== # Application specific properties # Add your own application properties here, see the ApplicationProperties class # to have type-safe configuration, like in the JHipsterProperties above # # More documentation is available at: # https://www.jhipster.tech/common-application-properties/ # =================================================================== # application: