This repository has been archived on 2020-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
e-commerce/prototype/src/main/resources/application.properties

20 lines
596 B
Properties

# ----------------------------------------
# CORE PROPERTIES
# ----------------------------------------
# LOGGING
logging.level.org.springframework.web=INFO
# DATABASE
spring.datasource.url = jdbc:sqlite:src/main/resources/test.db
spring.datasource.driverClassName = org.sqlite.JDBC
spring.jpa.properties.hibernate.dialect = org.hso.ecommerce.db.SQLiteDialect
spring.jpa.hibernate.ddl-auto=update
# ----------------------------------------
# WEB PROPERTIES
# ----------------------------------------
# EMBEDDED SERVER CONFIGURATION (ServerProperties)
server.address=127.0.0.1
server.port=8080