Я делаю простой отдых с помощью jpa и использую postgres.
Когда я запускаю код, я вижу эту строку:
org.postgresql.util.PSQLException: FATAL: password authentication failed for user "postgres "
......
Это мой application.properties
:
server.port=1408
spring.datasource.url=jdbc:postgresql://localhost:5433/weebjournal
spring.datasource.username=postgres
spring.datasource.password=Bomaydeobiet2004
spring.jpa.hibernate.ddl-auto=create-drop
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
Как я могу это исправить?