06. Spring – Link backend Project with front end.

Link backend Project with front end.

//In the backend Project - pom.xml
<groupId>com.lhu</groupId>
<artifactId>vehicle_rent_backend</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

//In the Front end Project - pom.xml
<dependencies>
<!-- Link backend project -->
<dependency>
<groupId>com.lhu</groupId>
<artifactId>vehicle_rent_backend</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>




Comments

Popular posts from this blog

09.Data Binding.

Database - Topics

02. Spring – Creating spring project clone it with GIT step by step.