| 123456789101112131415161718192021222324252627282930 |
- spring.datasource.url=jdbc:mysql://127.0.0.1:3306/cartelle?autoReconnect=true&zeroDateTimeBehavior=convertToNull&serverTimezone=Europe/Rome
- spring.jpa.hibernate.ddl-auto=update
- spring.session.jdbc.initialize-schema=never
- spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
- spring.jpa.database-platform=org.hibernate.dialect.MySQL57Dialect
- #spring.profiles.default=sqlite
- #hibernate.dialect = org.hibernate.dialect.SQLiteDialect
- #hibernate.dialect=com.sqlite.SQLiteDialect
- #spring.jpa.properties.hibernate.dialect=com.sqlite.SQLiteDialect
- spring.jpa.show-sql=true
- #disable database pooling - not supported on sqlite
- spring.datasource.hikari.maximum-pool-size=1
- spring.servlet.multipart.max-file-size=50MB
- spring.servlet.multipart.max-request-size=50MB
- server.port=9000
- spring.datasource.username=root
- spring.datasource.password=kranio-10
- ############ JWT Properties #####################
- jwt.expiration.time=90000
- jwt.public.key=classpath:app.pub
- ## This is strictly for demo purpose only,
- # DO NOT define the private key in the repository like this in your personal projects
- jwt.private.key=classpath:app.key
|