Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.47 KB | None | 0 0
  1. server:
  2.   context-path: /
  3.  
  4. spring:
  5.   datasource:
  6. #    url: jdbc:mysql://localhost:3306/food_planner?autoReconnect=true&useSSL=false
  7.     url: jdbc:mysql://database:3306/food_planner?autoReconnect=true&useSSL=false
  8.     username: food_planner
  9.     password: food_planner
  10.     driver-class-name: com.mysql.jdbc.Driver
  11.  
  12.   jpa:
  13.     show-sql: true
  14.     hibernate:
  15.       ddl-auto: update
  16.  
  17. security:
  18.   basic:
  19.     enabled: true
  20.    
  21. #logging:
  22. #  level:
  23. #    ROOT: DEBUG
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement