19 lines
724 B
Properties
19 lines
724 B
Properties
|
|
#
|
||
|
|
# Copyright (c) 2019 Bosch Software Innovations GmbH and others.
|
||
|
|
#
|
||
|
|
# All rights reserved. This program and the accompanying materials
|
||
|
|
# are made available under the terms of the Eclipse Public License v1.0
|
||
|
|
# which accompanies this distribution, and is available at
|
||
|
|
# http://www.eclipse.org/legal/epl-v10.html
|
||
|
|
#
|
||
|
|
|
||
|
|
# This profile adds basic configurations for a DB2 DB usage.
|
||
|
|
# Keep in mind that you need the DB2 driver in your classpath on compile.
|
||
|
|
# see https://www.eclipse.org/hawkbit/guides/runhawkbit/
|
||
|
|
|
||
|
|
spring.jpa.database=DB2
|
||
|
|
spring.datasource.url=jdbc:db2://localhost:50000/hawkbit
|
||
|
|
spring.datasource.username=db2inst1
|
||
|
|
spring.datasource.password=db2inst1-pwd
|
||
|
|
spring.datasource.driverClassName=com.ibm.db2.jcc.DB2Driver
|