search
HomeDatabaseMysql TutorialHow to develop a simple online ordering system using MySQL and Java

How to develop a simple online ordering system using MySQL and Java

How to use MySQL and Java to develop a simple online ordering system

In recent years, with the development of the Internet, more and more restaurants have begun to order online. Meal model transformation. The online ordering system can not only improve the service efficiency of the restaurant, but also facilitate customers to order food, and realize online payment, takeout delivery and other functions. This article will introduce how to use MySQL and Java to develop a simple online ordering system to meet the needs of restaurants and customers.

1. Database design

Before developing the online ordering system, you first need to design the database structure. The following is a simplified database design example:

  1. User table (User): Contains user ID, user name, password and other fields.
  2. Dish table (Dish): Contains fields such as dish ID, dish name, price, and description.
  3. Order table (Order): includes fields such as order ID, user ID, order time, total amount, etc.
  4. Order Detail (OrderDetail): Contains order detail ID, order ID, dish ID, quantity and other fields.

The above is a simple database design that can be expanded according to actual needs.

2. Java back-end development

  1. Database connection

Using Java language to connect to the MySQL database requires the introduction of relevant database driver packages. First, add the MySQL driver package to the project, and then establish a database connection in the code. The sample code is as follows:

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;

public class DatabaseConnector {
    private static final String URL = "jdbc:mysql://localhost:3306/online_ordering_system";
    private static final String USER = "root";
    private static final String PASSWORD = "123456";

    public static Connection getConnection() throws SQLException {
        Connection connection = DriverManager.getConnection(URL, USER, PASSWORD);
        return connection;
    }
}
  1. User management

User management includes user registration and login and other functions. The sample code is as follows:

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

public class UserManager {
    public static boolean register(String username, String password) throws SQLException {
        Connection connection = DatabaseConnector.getConnection();
        PreparedStatement statement = connection.prepareStatement("INSERT INTO User (username, password) VALUES (?, ?)");
        statement.setString(1, username);
        statement.setString(2, password);
        int rows = statement.executeUpdate();
        statement.close();
        connection.close();
        return rows > 0;
    }

    public static boolean login(String username, String password) throws SQLException {
        Connection connection = DatabaseConnector.getConnection();
        PreparedStatement statement = connection.prepareStatement("SELECT * FROM User WHERE username = ? AND password = ?");
        statement.setString(1, username);
        statement.setString(2, password);
        ResultSet resultSet = statement.executeQuery();
        boolean result = resultSet.next();
        statement.close();
        connection.close();
        return result;
    }
}
  1. Dish management

Dish management includes functions such as adding dishes and querying them. The sample code is as follows:

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;

public class DishManager {
    public static boolean addDish(String dishName, double price, String description) throws SQLException {
        Connection connection = DatabaseConnector.getConnection();
        PreparedStatement statement = connection.prepareStatement("INSERT INTO Dish (dish_name, price, description) VALUES (?, ?, ?)");
        statement.setString(1, dishName);
        statement.setDouble(2, price);
        statement.setString(3, description);
        int rows = statement.executeUpdate();
        statement.close();
        connection.close();
        return rows > 0;
    }

    public static List<Dish> getDishes() throws SQLException {
        Connection connection = DatabaseConnector.getConnection();
        PreparedStatement statement = connection.prepareStatement("SELECT * FROM Dish");
        ResultSet resultSet = statement.executeQuery();
        List<Dish> dishes = new ArrayList<>();
        while (resultSet.next()) {
            Dish dish = new Dish();
            dish.setDishId(resultSet.getInt("dish_id"));
            dish.setDishName(resultSet.getString("dish_name"));
            dish.setPrice(resultSet.getDouble("price"));
            dish.setDescription(resultSet.getString("description"));
            dishes.add(dish);
        }
        statement.close();
        connection.close();
        return dishes;
    }
}
  1. Order Management

Order management includes order creation, query and other functions. The sample code is as follows:

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.List;

public class OrderManager {
    public static boolean createOrder(int userId, List<OrderDetail> orderDetails) throws SQLException {
        Connection connection = DatabaseConnector.getConnection();
        PreparedStatement statement = connection.prepareStatement("INSERT INTO Order (user_id, order_time, total_amount) VALUES (?, ?, ?)");
        statement.setInt(1, userId);
        statement.setTimestamp(2, new Timestamp(System.currentTimeMillis()));
        double totalAmount = 0;
        for (OrderDetail orderDetail : orderDetails) {
            totalAmount += orderDetail.getQuantity() * orderDetail.getDish().getPrice();
        }
        statement.setDouble(3, totalAmount);
        int rows = statement.executeUpdate();
        statement.close();

        if (rows > 0) {
            // 获取刚插入的订单ID
            PreparedStatement getLastInsertIdStatement = connection.prepareStatement("SELECT LAST_INSERT_ID()");
            ResultSet resultSet = getLastInsertIdStatement.executeQuery();
            int orderId = 0;
            if (resultSet.next()) {
                orderId = resultSet.getInt(1);
            }

            // 插入订单明细
            PreparedStatement insertOrderDetailStatement = connection.prepareStatement("INSERT INTO OrderDetail (order_id, dish_id, quantity) VALUES (?, ?, ?)");
            for (OrderDetail orderDetail : orderDetails) {
                insertOrderDetailStatement.setInt(1, orderId);
                insertOrderDetailStatement.setInt(2, orderDetail.getDish().getDishId());
                insertOrderDetailStatement.setInt(3, orderDetail.getQuantity());
                insertOrderDetailStatement.addBatch();
            }
            insertOrderDetailStatement.executeBatch();
            insertOrderDetailStatement.close();
            getLastInsertIdStatement.close();
        }

        connection.close();
        return rows > 0;
    }

    public static List<Order> getOrders(int userId) throws SQLException {
        Connection connection = DatabaseConnector.getConnection();
        PreparedStatement statement = connection.prepareStatement("SELECT * FROM Order WHERE user_id = ?");
        statement.setInt(1, userId);
        ResultSet resultSet = statement.executeQuery();
        List<Order> orders = new ArrayList<>();
        while (resultSet.next()) {
            Order order = new Order();
            order.setOrderId(resultSet.getInt("order_id"));
            order.setUserId(resultSet.getInt("user_id"));
            order.setOrderTime(resultSet.getTimestamp("order_time"));
            order.setTotalAmount(resultSet.getDouble("total_amount"));
            orders.add(order);
        }
        statement.close();
        connection.close();
        return orders;
    }
}

The above is a simple Java back-end development example, including user management, dish management, order management and other functions.

3. Front-end development

The front-end development part can be developed using HTML, CSS, JavaScript and other related technologies to implement user interface and interaction logic. No specific front-end code examples are provided here. It is recommended to use front-end frameworks such as Bootstrap for rapid development.

4. Summary

Using MySQL and Java to develop a simple online ordering system can improve the ordering experience of restaurants and customers. By rationally designing the database structure and using Java and MySQL for back-end development, functions such as user management, dish management, and order management can be realized. At the same time, front-end development also needs to consider the design of the user interface and the implementation of interaction logic.

I hope this article can help readers understand how to use MySQL and Java to develop a simple online ordering system, and provides some specific code examples for reference.

The above is the detailed content of How to develop a simple online ordering system using MySQL and Java. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Adding Users to MySQL: The Complete TutorialAdding Users to MySQL: The Complete TutorialMay 12, 2025 am 12:14 AM

Mastering the method of adding MySQL users is crucial for database administrators and developers because it ensures the security and access control of the database. 1) Create a new user using the CREATEUSER command, 2) Assign permissions through the GRANT command, 3) Use FLUSHPRIVILEGES to ensure permissions take effect, 4) Regularly audit and clean user accounts to maintain performance and security.

Mastering MySQL String Data Types: VARCHAR vs. TEXT vs. CHARMastering MySQL String Data Types: VARCHAR vs. TEXT vs. CHARMay 12, 2025 am 12:12 AM

ChooseCHARforfixed-lengthdata,VARCHARforvariable-lengthdata,andTEXTforlargetextfields.1)CHARisefficientforconsistent-lengthdatalikecodes.2)VARCHARsuitsvariable-lengthdatalikenames,balancingflexibilityandperformance.3)TEXTisidealforlargetextslikeartic

MySQL: String Data Types and Indexing: Best PracticesMySQL: String Data Types and Indexing: Best PracticesMay 12, 2025 am 12:11 AM

Best practices for handling string data types and indexes in MySQL include: 1) Selecting the appropriate string type, such as CHAR for fixed length, VARCHAR for variable length, and TEXT for large text; 2) Be cautious in indexing, avoid over-indexing, and create indexes for common queries; 3) Use prefix indexes and full-text indexes to optimize long string searches; 4) Regularly monitor and optimize indexes to keep indexes small and efficient. Through these methods, we can balance read and write performance and improve database efficiency.

MySQL: How to Add a User RemotelyMySQL: How to Add a User RemotelyMay 12, 2025 am 12:10 AM

ToaddauserremotelytoMySQL,followthesesteps:1)ConnecttoMySQLasroot,2)Createanewuserwithremoteaccess,3)Grantnecessaryprivileges,and4)Flushprivileges.BecautiousofsecurityrisksbylimitingprivilegesandaccesstospecificIPs,ensuringstrongpasswords,andmonitori

The Ultimate Guide to MySQL String Data Types: Efficient Data StorageThe Ultimate Guide to MySQL String Data Types: Efficient Data StorageMay 12, 2025 am 12:05 AM

TostorestringsefficientlyinMySQL,choosetherightdatatypebasedonyourneeds:1)UseCHARforfixed-lengthstringslikecountrycodes.2)UseVARCHARforvariable-lengthstringslikenames.3)UseTEXTforlong-formtextcontent.4)UseBLOBforbinarydatalikeimages.Considerstorageov

MySQL BLOB vs. TEXT: Choosing the Right Data Type for Large ObjectsMySQL BLOB vs. TEXT: Choosing the Right Data Type for Large ObjectsMay 11, 2025 am 12:13 AM

When selecting MySQL's BLOB and TEXT data types, BLOB is suitable for storing binary data, and TEXT is suitable for storing text data. 1) BLOB is suitable for binary data such as pictures and audio, 2) TEXT is suitable for text data such as articles and comments. When choosing, data properties and performance optimization must be considered.

MySQL: Should I use root user for my product?MySQL: Should I use root user for my product?May 11, 2025 am 12:11 AM

No,youshouldnotusetherootuserinMySQLforyourproduct.Instead,createspecificuserswithlimitedprivilegestoenhancesecurityandperformance:1)Createanewuserwithastrongpassword,2)Grantonlynecessarypermissionstothisuser,3)Regularlyreviewandupdateuserpermissions

MySQL String Data Types Explained: Choosing the Right Type for Your DataMySQL String Data Types Explained: Choosing the Right Type for Your DataMay 11, 2025 am 12:10 AM

MySQLstringdatatypesshouldbechosenbasedondatacharacteristicsandusecases:1)UseCHARforfixed-lengthstringslikecountrycodes.2)UseVARCHARforvariable-lengthstringslikenames.3)UseBINARYorVARBINARYforbinarydatalikecryptographickeys.4)UseBLOBorTEXTforlargeuns

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft