So I just used the spring boot initializr to setup up the project with postgresql driver, spring web, and jpa using maven and java 17, then I jump straight into the application.properties and configure the basics. but then for all the projects up until now i get unused property:
# Database connection settings
spring.datasource.url=jdbc:postgresql://localhost:5432/your_database_name
spring.datasource.username=your_username
spring.datasource.password=your_password
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
spring.jpa.hibernate.ddl-auto=update
How do i fix this
Im trying ot connect to the database postgresql
Zain Ali is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.