Skip to content

tonychen427/AdminPortal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Admin Portal v1.0.0

#Setup

npm install

bower install

    There will be a conflict with jquery / font-awesome 
    because the original library did not update their bower.json 
    so some of their dependency was out date. Please select the latest jquery / font-awesome library.

           - jquery#~2.1.4 
           - components-font-awesome#~4.5 

#Command Line

mvn clean install

mvn jetty:run

mvn clean package

#Unit Testing

TestNG With Spring Framework.    

#Debug using Netbeans IDE

Project - Properties - Actions - Debug project

Execute Goals : jetty:run

set properties : jpda.listen=maven

#URL

http://localhost:8080/index
http://localhost:8080/adminLTE

#RESTful API

http://localhost:8080/api/users/

GET request to /api/users/ returns a list of users
GET request to /api/user/1 returns the user with ID 1
POST request to /api/user/ with a user object as JSON creates a new user
PUT request to /api/user/3 with a user object as JSON updates the user with ID 3
DELETE request to /api/user/4 deletes the user with ID 4
DELETE request to /api/users/ deletes all the users

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published