blob: 55f14851acecb619fbee9141e915578b7ea5e90d [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
camel:
springboot:
# The Camel context name
name: CamelRestJpa
component:
servlet:
mapping:
contextPath: /camel-rest-jpa/*
mysql:
service:
# The host of the MySQL database server, can be customized using
# the 'MYSQL_SERVICE_HOST' env variable
host: localhost
# The port of the MySQL database server, can be customized using
# the 'MYSQL_SERVICE_PORT' env variable
port: 3306
# The database to use, can be customized using the 'MYSQL_SERVICE_DATABASE'
# env variable
database: sampledb
spring:
# Spring JDBC configuration
datasource:
url: jdbc:mysql://${mysql.service.host}:${mysql.service.port}/${mysql.service.database}
username: ${mysql.service.username}
password: ${mysql.service.password}
# Spring Data JPA configuration
jpa:
hibernate:
# To be updated in real production usage!
ddl-auto: create-drop
show-sql: false
# The application configuration properties
example:
generateOrderPeriod: 10s
processOrderPeriod: 30s