/RESTful-Example

a REST web service to manage a list of people

Primary LanguageHTML

RESTfulApp

a REST web service to manage a list of people

step to follow :

1- database :

CREATE DATABASE person; -- create new database
use person; -- use database
CREATE TABLE p ( -- create table p
id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
nom VARCHAR(30) NOT NULL,
prenom VARCHAR(30) NOT NULL,
age INT(6),
reg_date TIMESTAMP
)

2- copy MyProjet to tomcat :

cp -r MyProjet <tomcat Path>/webapps/

3- copy MyProjet to tomcat :

cp -r MyProjet <tomcat Path>/webapps/

4- compile MyProjet :

cd WEB-INF/ # From MyProjet repertoire
javac -classpath "lib/*" src/com/person/Gestion.java src/com/person/Person.java -d classes/

5- Restart tomcat :

cd bin/ # From tomcat repertoire
./shutdown.sh #stop tomcat server
./startup.sh #start tomcat server

6- use WebPages to manage a list of people :

WebPages
  |-------index.html 
  |-------edit.html
  |-------add.html
  |-------del.html