[solved]-Task Develop Java Web Application Restaurant Satisfying Following Requirements Choose Type Q39083449
The task is to develop a Java web application for a restaurantsatisfying the following requirements. You can choose any type offood.
1. Use the following Java and database entities. Make sure thatentities have correct
relationships.
a. Customer (Id, LastName, FirstName, Address, City, State, Zip,Phone)
b. Food (Id, Name, Price, Ingredients) c. Server (Id, LastName,FirstName, HireDate)
d. Order (Id, ServerId, CustomerId, OrderDate)
e. OrderItems (Id, OrderId, FoodId, Quantity, PriceCharged)
2. The application should allow the user to create new entities(Customer, Server, and Food), view the details of them, and editand delete them.
3. The application should allow the user to create new foodorder with order details, view, edit and delete the order.
Use MVC pattern as well
Expert Answer
Answer to The task is to develop a Java web application for a restaurant satisfying the following requirements. You can choose any… . . .
OR

