Job_Search_Portal

DataBase

H2-Database

Data Flow

Controller -- > Controller package handels all type of Api request. our Api requests are handeled by JobController

Model --> Inside model package we store our Job entity as Job class

Service--> Inside the service package,we write all type of the business logic inside JobService

Repo -->Inside the Repo Package there is a JobRepo Interface and it Inherits Crud Repo

Git Commands

$ git init
$ git status
$ git add
$ git commit -m "rakeshCommit"
$ git remote add origin https://github.com/rakesh1234-png/Job_Search-Portal2.git
$ git push -u origin master

Application Properties

spring.datasource.url=jdbc:h2:mem:h2db
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=root
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
spring.h2.console.enabled=true
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.properties.hibernate.use_sql_comments=true
spring.jpa.properties.hibernate.format_sql=true