Advertisement
Guest User

Untitled

a guest
Jul 10th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. spring.datasource.url= jdbc:mysql://${MYSQL_URL}:${MYSQL_PORT}/${MYSQL_DBNAME}
  2. spring.datasource.username= ${MYSQL_USERNAME}
  3. spring.datasource.password= ${MYSQL_PASSWORD}
  4. spring.datasource.driver-class-name= com.mysql.jdbc.Driver
  5. spring.jpa.hibernate.ddl-auto= update
  6. spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.MySQL5Dialect
  7.  
  8. Property: spring.datasource.url
  9. Value: jdbc:mysql://${MYSQL_URL}:${MYSQL_PORT}/${MYSQL_DBNAME}
  10. Origin: class path resource [application.properties]:1:24
  11. Reason: Could not resolve placeholder 'MYSQL_URL' in value "jdbc:mysql://${MYSQL_URL}:${MYSQL_PORT}/${MYSQL_DBNAME}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement