Giter Site home page Giter Site logo

spring-hibernate-crud's Introduction

spring-hibernate-crud

SPRING + HIBERNATE + MYSQL CRUD APPLICATION

This project contains all the required starter files ( jar files for spring, hibernate, and xml files ) for basic crud type app. Im not using maven for dependency management so all jar jar files have been downloaded manually.

SPRING AND HIBERNATE CRUD APP USES THE MANUALLY DOWNLOADED JAR FILES MYSQL AS DATABASE DOES ADD, DELETE , UPDATE AND FETCH THE RECORD FROM THE TABLE DEFINED IN DB 5)TO RUN THIS PROJECT CLONE IT AND RUN THE SQL FILE ATTACHED IN HERE sql file query is : to create database first run : create database spring_hib_crud;

then to create table run the following :

CREATE TABLE customer ( id int(11) NOT NULL, first_name varchar(45) NOT NULL, last_name varchar(45) NOT NULL, email varchar(45) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1;

INSERT INTO customer (id, first_name, last_name, email) VALUES (13, 'Badri', 'Paudel', '[email protected]'), (15, 'Alisha ', 'Paudel', '[email protected]'), (18, 'Gita', 'Bhattarai', '[email protected]'), (19, 'Ganesh', 'Stha', '[email protected]'), (32, 'Woo', 'Jian', '[email protected]'), (35, 'Hari', 'Vai', '[email protected]');

ALTER TABLE customer ADD PRIMARY KEY (id);

spring-hibernate-crud's People

Contributors

badripaudel77 avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.