Vorbereitung Release 0.2.0

This commit is contained in:
2026-01-29 23:50:41 +01:00
parent 58f80b3e76
commit b26b5ecc9c
571 changed files with 35728 additions and 5022 deletions
@@ -12,6 +12,9 @@ spring:
ddl-auto: update
#ddl-auto: create-drop
show-sql: false
properties:
hibernate:
#dialect: org.hibernate.dialect.PostgreSQLDialect
sql:
init:
mode: never
@@ -21,14 +24,25 @@ spring:
multipart:
max-file-size: 10MB
max-request-size: 10MB
camel:
cloud:
enabled: true
springboot:
routes-reload-enabled: true
routes-reload-directory: routes
routes-relaod-pattern: "*.xml"
management:
endpoints:
web:
exposure:
include: "*"
include: health,info,metrics,prometheus,camelroutes
endpoint:
health:
show-details: always
probes:
enabled: true
prometheus:
enabled: true
logging:
level:
org:
@@ -36,6 +50,10 @@ logging:
hibernate: INFO
springframework:
web: INFO
jms: DEBUG
apache:
activemq:
artemis: DEBUG
guru:
springframework:
controllers: DEBUG
@@ -55,12 +73,16 @@ spring:
activate:
on-profile: prod
datasource:
driverClassName: org.mariadb.jdbc.Driver
url: jdbc:mariadb://mariadb:3306/kontor
url: jdbc:postgresql://postgres:5432/kontor
username: 'kontor'
password: 'kontor'
artemis:
mode: native
broker-url: tcp://activemq:61616
user: artemis
password: artemis
server:
port: 8000
port: 8100
---
spring:
config:
@@ -69,19 +91,13 @@ spring:
devtools:
add-properties: false
datasource:
driverClassName: org.mariadb.jdbc.Driver
url: jdbc:mariadb://localhost:3306/kontor
username: 'kontor'
password: 'kontor'
#driverClassName: org.hsqldb.jdbc.JDBCDriver
#url: jdbc:hsqldb:file:kontorHSQLDB
#username: 'sa'
#password: 'sa'
#driverClassName: org.sqlite.JDBC
#url: "jdbc:sqlite:file:./kontorDb?cache=shared"
#username=sa
#password=sa
#jpa
#database-platform: org.hibernate.community.dialect.SQLiteDialect
url: jdbc:postgresql://localhost:5432/kontor
username: kontor
password: kontor
artemis:
mode: native
broker-url: tcp://localhost:61616
user: artemis
password: artemis
server:
port: 8085