Java back-end server programming; includes various exercises
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
597 B

  1. server.port = 8080
  2. # This MySQL database connection is established to a remote SQL server via SSH tunnel.
  3. spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
  4. spring.datasource.url=jdbc:mysql://127.0.0.1:3306/MYSQL_DATABASE?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
  5. spring.datasource.username=MYSQL_USERNAME
  6. spring.datasource.password=MYSQL_PASSWORD
  7. spring.datasource.initialization-mode=always
  8. logging.level.org.springframework.jdbc.core.JdbcTemplate=DEBUG
  9. logging.level.org.springframework.jdbc.core.StatementCreatorUtils=TRACE