| 1234567891011121314151617181920212223242526272829303132333435363738 |
- # ===============================
- # TOMCAT
- # ===============================
- #server.address=127.0.0.1
- #server.error.whitelabel.enabled=true
- ## ===============================
- ## = LOGGING
- ## ===============================
- #logging.level.org.springframework.web=DEBUG
- #logging.level.org.hibernate=ERROR
- #
- ## ===============================
- ## = DATA SOURCE
- ## ===============================
- #spring.datasource.url=jdbc:mysql://localhost:3306/pcap
- #spring.datasource.username=root
- #spring.datasource.password=
- #spring.datasource.driver-class-name=com.mysql.jdbc.Driver
- #spring.datasource.tomcat.max-wait=10000
- #spring.datasource.tomcat.max-active=5
- #spring.datasource.tomcat.test-on-borrow=true
- #
- ## ===============================
- ## = JPA / HIBERNATE
- ## ===============================
- #spring.jpa.show-sql = true
- #spring.jpa.hibernate.ddl-auto = create-drop
- ##change to update once functional
-
- #app.config.redis.host=localhost
- #app.config.redis.port=6379
- #app.config.redis.user=
- #app.config.redis.password=
-
-
- spring.redis.host= localhost
-
- spring.redis.port= 6379
|