If I run my project I run in error but if I run the project from terminal everything it's ok

49 Views Asked by At

If I run my project from terminal everything it's ok, but if I run the project from Spring Tool Suite I receive this error enter image description here

The script that I use for running the project from terminal is this

./mvnw -P dev,casalibro-dev

and in the pom file I've setted this profile

<profile>
        <id>casalibro-dev</id>
        <properties>
            <datasource.url>jdbc:postgresql://localhost:5432/casalibro</datasource.url>
            <datasource.username>casalibro</datasource.username>
            <datasource.password>xxxxxx</datasource.password>
        </properties>
    </profile>
1

There are 1 best solutions below

0
On

The main purpose of the pom.xml file is to define the build of a project. If you want to define properties for the application itself, you should add an application.properties file to the resource section of your app and define your properties in there. Those properties will be part of your app and can be used at runtime.