skip to Main Content

SpringBoot project failing to connect to PostgreSQL

I'm trying to execute a SpringBoot project, however I'm having this problem running: *************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to…

VIEW QUESTION

How to connect MySQL Database to Spring boot 3?

I am writing Restful API in Spring boot 3 with java 17 and i am unable to create table .Can anyone please help POM File <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.0.3</version> <relativePath/> <!--…

VIEW QUESTION
Back To Top
Search