Skip to content

Spring Boot Crud(CREATE, READ, UPDATE, DELETE) REST full API with MySQL DATABASE

Notifications You must be signed in to change notification settings

Jitendrasahu999/Spring-boot-CRUD-Operation-Restfull-API-

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring-boot-CRUD-Operation-Restfull-API-With MySQL data base

Requird Spesification:-

JAVA 8

STS(SPRING TOOL SUITE) IDI

MySQL database

Maven repository

Maven Dependancy Required in this Project :-

4.0.0

<groupId>com.spring</groupId>
<artifactId>WorksManagementSystem</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>WorksManagementSystem</name>
<description>Demo project for Spring Boot</description>

<parent>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-parent</artifactId>
	<version>2.0.6.RELEASE</version>
	<relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
	<java.version>1.8</java.version>
</properties>

<dependencies>
	<dependency>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-data-jpa</artifactId>
	</dependency>
	<dependency>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-web</artifactId>
	</dependency>

	<dependency>
		<groupId>mysql</groupId>
		<artifactId>mysql-connector-java</artifactId>
		<scope>runtime</scope>
	</dependency>
	<dependency>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-test</artifactId>
		<scope>test</scope>
	</dependency>
</dependencies>

<build>
	<plugins>
		<plugin>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-maven-plugin</artifactId>
		</plugin>
	</plugins>
</build>

Jar file required in this project :-

MySQL Connector

Servlet and Jsp

Tomcat Japer

Spring

About

Spring Boot Crud(CREATE, READ, UPDATE, DELETE) REST full API with MySQL DATABASE

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages