GithubHelp home page GithubHelp logo

int-task's Introduction

Getting Started

  1. Clone the repo
git clone https://github.com/gkepka/int-task.git
  1. Go to repo directory
cd int-task
  1. Build
mvn clean package

Now you are ready to take the packaged WAR (located under ./target/simple-webapp.war) and deploy it to a Servlet container of your choice.

Usage

Example POST request:

{
    "products": [
        {
            "name": "Bread",
            "type": "GRAINS",
            "price": 5
        },
        {
            "name": "Banana",
            "type": "FRUITS",
            "price": 4.4
        },
        {
            "name": "Tomato",
            "type": "VEGETABLES",
            "price": 7
        },
        {
            "name": "Steak",
            "type": "MEAT",
            "price": 50
        },
        {
            "name": "Cheese",
            "type": "DAIRY",
            "price": 20.5
        }
    ]
}

Example response:

{
    "discounts": [
        "TenPercentDiscount"
    ],
    "entries": [
        {
            "product": {
                "name": "Banana",
                "price": 4.4,
                "type": "FRUITS"
            },
            "quantity": 1,
            "totalPrice": 4.4
        },
        {
            "product": {
                "name": "Tomato",
                "price": 7,
                "type": "VEGETABLES"
            },
            "quantity": 1,
            "totalPrice": 7
        },
        {
            "product": {
                "name": "Steak",
                "price": 50,
                "type": "MEAT"
            },
            "quantity": 1,
            "totalPrice": 50
        },
        {
            "product": {
                "name": "Bread",
                "price": 5,
                "type": "GRAINS"
            },
            "quantity": 1,
            "totalPrice": 5
        },
        {
            "product": {
                "name": "Cheese",
                "price": 20.5,
                "type": "DAIRY"
            },
            "quantity": 1,
            "totalPrice": 20.5
        }
    ],
    "totalPrice": 78.21
}

int-task's People

Contributors

gkepka avatar

Watchers

 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.