Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fatihbaltaci/spring-hibernate-web-mvc-crud-customer

It's a basic MVC project that connects to MySQL Database.
https://github.com/fatihbaltaci/spring-hibernate-web-mvc-crud-customer

Last synced: 10 days ago
JSON representation

It's a basic MVC project that connects to MySQL Database.

Awesome Lists containing this project

README

        

# Spring-Hibernate-Web-MVC-CRUD-Customer
It's a basic MVC project that connects to MySQL Database.

MySQL Script:

CREATE TABLE `customer` (

`id` int(11) NOT NULL AUTO_INCREMENT,

`first_name` varchar(45) DEFAULT NULL,

`last_name` varchar(45) DEFAULT NULL,

`email` varchar(45) DEFAULT NULL,

PRIMARY KEY (`id`)

);