人工智慧為改變我的日常工作並提高效率做出了貢獻
身為開發人員,當您的時間有限時,建立訂單處理服務有時會讓人感到不知所措。然而,借助 ChatGPT 等人工智慧驅動的開發工具的強大功能,您可以透過產生程式碼、設計實體和逐步解決問題來顯著加快流程。在本文中,我將向您介紹如何使用 ChatGPT 在短短 2 天內建立功能齊全的訂單處理服務,從收集需求到完成。
老實說,對於不同的小任務有很多小線程和提示,我無法將它們總結成一個完整的項目,但總的來說......它幫助了我70 - 80 %。另外,這裡是一些原始程式碼,經過我審閱,可能是手工修改的,所以你可能在我分享的github上找不到這個功能。
我做的第一件事就是列出該服務所需的核心功能。以下是我需要的主要功能:
我請求 ChatGPT 幫我設計符合需求的 API 結構。這是我使用的第一個提示的範例:
提示:
使用 Spring Boot 為使用者註冊系統建立 API 端點,使用者可以在其中使用自己的姓名、手機號碼和地址進行註冊。
結果: ChatGPT 產生了多個端點:
對於訂單處理服務,我們需要 User、Franchise、Order、Queue 和 OrderItem 實體。我使用 ChatGPT 來定義這些具有必要欄位的實體。
提示:
為系統設計使用者實體。用戶可以擁有手機號碼、地址和角色(例如 CUSTOMER)。
結果: ChatGPT 使用 JPA 提供了一個簡單的使用者實體:
@Entity public class User { @Id @GeneratedValue(strategy = GenerationType.AUTO) private UUID id; @Column(nullable = false, unique = true) private String username; @Column(nullable = false) private String password; private String mobileNumber; private String address; private UserRole role; // CUSTOMER, ADMIN }
我對特許經營、訂單和隊列實體重複了這個過程。
設定基本 API 和實體後,我開始實作下單業務邏輯。這是該服務的關鍵部分,因為它需要處理選單中的多個項目並管理佇列位置。
提示:
實現多個商品下訂單的邏輯,其中每個商品都連結到特許經營中的特定菜單。
結果: ChatGPT 指導我設計了一個 OrderService 來處理這個問題。這是實現的一部分:
public Order createOrder(UUID customerId, UUID franchiseId, List<OrderItemDTO> items) { Order order = new Order(); order.setCustomer(userRepository.findById(customerId).orElseThrow()); order.setFranchise(franchiseRepository.findById(franchiseId).orElseThrow()); List<OrderItem> orderItems = items.stream() .map(itemDto -> new OrderItem(menuItemRepository.findById(itemDto.getMenuItemId()), itemDto.getQuantity())) .collect(Collectors.toList()); order.setItems(orderItems); order.setQueuePosition(findQueuePositionForFranchise(franchiseId)); return orderRepository.save(order); }
接下來,我請 ChatGPT 幫我設計將客戶放入隊列並追蹤其位置的邏輯。
提示:
如何計算咖啡加盟系統中訂單的排隊位置和等待時間?
結果: ChatGPT 建議建立一個 QueueService 來追蹤訂單並根據時間戳為其分配位置。我的實作如下:
public int findQueuePositionForFranchise(UUID franchiseId) { List<CustomerQueue> queue = customerQueueRepository.findAllByFranchiseId(franchiseId); return queue.size() + 1; }
它還提供了根據平均訂單處理時間估計等待時間的指導。
最後,我實現了允許客戶取消訂單並退出隊列的邏輯:
public void cancelOrder(UUID orderId) { Order order = orderRepository.findById(orderId).orElseThrow(); queueService.removeFromQueue(order.getQueue().getId(), order.getId()); orderRepository.delete(order); }
By the end of Day 2, I had a fully functional service that allowed customers to:
I have a few more steps to create the documentation, use liquidbase and have chatGPT generate sample data for easier testing.
Building an order processing system for a coffee shop in 2 days may sound daunting, but with AI assistance, it’s achievable. ChatGPT acted like a coding assistant, helping me transform abstract requirements into a working system quickly. While AI can provide a foundation, refining and customizing code is still an essential skill. This project taught me how to maximize the value of AI tools without losing control of the development process.
By following the steps I took, you can speed up your own projects and focus on higher-level problem-solving, leaving the routine code generation and guidance to AI.
Full source Github
以上是使用 ChatGPT 建立訂單處理服務(貢獻努力)並已完成的詳細內容。更多資訊請關注PHP中文網其他相關文章!