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

22 lines
623 B
Properties
Raw Normal View History

# ----------------------------------------
# CORE PROPERTIES
# ----------------------------------------
spring.resources.cache.cachecontrol.maxAge=P365D
# LOGGING
logging.level.org.springframework.web=INFO
# DATABASE
spring.datasource.url = jdbc:sqlite:./test.db
2020-01-05 01:41:45 +01:00
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=::1
2020-01-23 22:11:14 +01:00
server.port=8080