spring.thymeleaf.cache=false spring.template.cache=false security.sessions=never server.port=8181 spring.redis.host=localhost spring.redis.password= spring.redis.port=6379 # =============================== # = DATA SOURCE # =============================== # Set here configurations for the database connection # Connection url for the database "netgloo_blog" spring.datasource.url = jdbc:mysql://localhost:3306/BookstoreApi # Username and secret spring.datasource.username = root spring.datasource.password = Rochester24 # Keep the connection alive if idle for a long time (needed in production) spring.datasource.testWhileIdle = true spring.datasource.validationQuery = SELECT 1 # =============================== # = JPA / HIBERNATE # =============================== # Use spring.jpa.properties.* for Hibernate native properties (the prefix is # stripped before adding them to the entity manager). # Show or not log for each sql query spring.jpa.show-sql = true # Hibernate ddl auto (create, create-drop, update): with "update" the database # schema will be automatically updated accordingly to java entities found in # the project spring.jpa.hibernate.ddl-auto = update # Allows Hibernate to generate SQL optimized for a particular DBMS spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect #spring.mail.properties.mail.smtp.ssl.enable = true spring.mail.host = smtp.gmail.com spring.mail.username =ray.deng83@gmail.com spring.mail.password =Rochester26 spring.mail.properties.mail.smtp.auth = true spring.mail.properties.mail.smtp.socketFactory.port = 465 spring.mail.properties.mail.smtp.socketFactory.class = javax.net.ssl.SSLSocketFactory spring.mail.properties.mail.smtp.socketFactory.fallback = false support.email=ray.deng83@gmail.com