Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/fatihbaltaci/spring-hibernate-web-mvc-crud-customer
- Owner: fatihbaltaci
- Created: 2017-05-17T06:29:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-17T07:33:21.000Z (over 7 years ago)
- Last Synced: 2023-09-07T15:13:50.157Z (about 1 year ago)
- Language: Java
- Size: 39.7 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`)
);