Code Monkey home page Code Monkey logo

java-orders's Introduction

java-orders

Introduction

This is a basic database scheme with customers, orders, and sales agents.

Instructions

Create a REST api server to store and read data from an in memory H2 database. The database is adapted from the sample database found at https://www.w3resource.com/sql/sql-table.php

The table layouts are as follows

  • AGENTS

    • AGENTCODE primary key, not null Long
    • AGENTNAME string
    • WORKINGAREA string
    • COMMISSION double
    • PHONE string
    • COUNTRY string
  • CUSTOMERS

    • CUSTCODE primary key, not null Long
    • CUSTNAME String, not null
    • CUSTCITY String
    • WORKINGAREA String
    • CUSTCOUNTRY String
    • GRADE String
    • OPENINGAMT double
    • RECEIVEAMT double
    • PAYMENTAMT double
    • OUTSTANDINGAMT double
    • PHONE String
    • AGENTCODE Long foreign key (one agent to many customers) not null
  • ORDERS

    • ORDNUM primary key, not null Long
    • ORDAMOUNT double
    • ADVANCEAMOUNT double
    • CUSTCODE Long foreign key (one customer to many orders) not null
    • AGENTCODE Long foreign key (one agent to many orders) not null
    • ORDDESCRIPTION
  • Create the entities needed to store this data

  • and Load in the data (a prepopulated data.sql file is available for you to use)

  • Create a generic error html page to return when error 404 happens.

  • Create a different generic error html page to return when error 500 happens.

  • Create a different generic error html page to return when an error other than a 404 or 500 happens.

Expose the following end points

  • /customer/order - Returns all customers with their orders
  • /customer/name/{custname} - Returns all orders for a particular based on name
  • /customer/order/{custcode} - Returns all orders for a particular customer based on custcode
  • /agents - Returns all agents with their customers
  • /agents/orders - Return a list with the agents name and associated order number and order description
  • /customer/{custcode} - Deletes a customer based off of their custcode and deletes all their associated orders
  • /agents/{agentcode} - Deletes an agent if they are not assigned to a customer or order (Stretch Goal)

java-orders's People

Contributors

jrmmba8314 avatar nchen0 avatar

Watchers

James Cloos 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.