Skip to content

iamdylanngo/dn.springboot.demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Springboot 2 with mysql demo

Create mysql table

CREATE TABLE students(
	id INT NOT NULL AUTO_INCREMENT,
	name VARCHAR(255) NOT NULL,
	height FLOAT NULL,
	PRIMARY KEY (id)
) engine = InnoDB

body.txt

{
    "name": "Dylan Ngo",
    "height": 120
}

ab -p body.txt -T application/json -c 100 -n 10000 http://localhost:8080/student/add

About

Springboot JPA, Mysql, Rest API

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages