智能停车计费体系通太过布式锁技能确保在多台服务器环境下,同一辆车的计费操作不会发生冲突,从而包管计费的正确性和同等性。
关键点
1. 高并发处理
- 需求: 停车场大概有大量的车辆同时进出,尤其是在高峰时段。
- 办理方案: 使用分布式架构和高效的数据库管理来处理高并发哀求。
2. 数据同等性
- 需求: 确保在多台服务器环境下,同一辆车的计费操作不会发生冲突。
- 办理方案: 使用分布式锁(如ZooKeeper)来包管数据的同等性和正确性。
3. 实时性
- 需求: 需要快速相应车辆的进失事件,并及时计算费用。
- 办理方案: 优化算法和数据库查询,确保低耽误。
使用ZooKeeper的利益
1. 分布式锁
- 包管数据同等性: 在多台服务器同时处理车辆进出记载的情况下,使用ZooKeeper的分布式锁可以确保同一辆车的计费操作在同一时间只能由一台服务器处理。这避免了并发问题,包管了计费的正确性和同等性。
- 防止重复计费: 如果没有分布式锁,大概会出现同一辆车多次被不同服务器计费的情况,导致重复收费或计费错误。
2. 高可用性
- 容错本领: ZooKeeper本身是一个高可用的服务,即使某一台ZooKeeper节点故障,其他节点仍然可以继续提供服务。这进步了整个体系的稳定性和可靠性。
- 负载平衡: 分布式锁机制可以资助均匀分配任务到不同的服务器上,进步体系的团体性能和相应速度。
3. 易于扩展
- 动态增长服务器: 随着业务的增长,可以通过简单地增长更多的服务器来处理更多的哀求。ZooKeeper可以轻松管理这些新增的服务器,并确保它们能够正确协同工作。
- 机动性: 添加新的功能或调整现有逻辑时,ZooKeeper的分布式特性使得这些更改更轻易实现和部署。
4. 简化协调过程
- 同一协调: ZooKeeper提供了一种集中式的协调机制,使得多个服务器之间的通讯和同步变得简单和高效。不再需要复杂的自定义协议或手动协调逻辑。
- 轻量级: ZooKeeper的设计目标是轻量级且高性能,适合在各种规模的应用中使用。
5. 监控和日志
- 实时监控: ZooKeeper提供了丰富的监控工具和API,可以实时监控集群的状态和健康状态。
- 审计日志: 可以通过ZooKeeper的日志功能跟踪所有对共享资源的操作,便于审计和故障排查。
代码实操
- <!-- Spring Boot Starter Web for RESTful services -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <!-- Apache Curator for ZooKeeper interaction -->
- <dependency>
- <groupId>org.apache.curator</groupId>
- <artifactId>curator-framework</artifactId>
- <version>${curator.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.curator</groupId>
- <artifactId>curator-recipes</artifactId>
- <version>${curator.version}</version>
- </dependency>
- <!-- Lombok for reducing boilerplate code -->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <optional>true</optional>
- </dependency>
复制代码 application.properties
- zookeeper.connect-string=localhost:2181
复制代码 ZookeeperConfig.java
- package com.example.parking.config;
- import org.apache.curator.framework.CuratorFramework;
- import org.apache.curator.framework.CuratorFrameworkFactory;
- import org.apache.curator.retry.ExponentialBackoffRetry;
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
- /**
- * 配置ZooKeeper连接。
- */
- @Configuration
- publicclass ZookeeperConfig {
- @Value("${zookeeper.connect-string}")
- private String zkConnectString;
- /**
- * 创建并返回一个CuratorFramework实例。
- * @return CuratorFramework实例
- */
- @Bean(initMethod = "start", destroyMethod = "close")
- public CuratorFramework curatorFramework() {
- return CuratorFrameworkFactory.newClient(zkConnectString, new ExponentialBackoffRetry(1000, 3));
- }
- }
复制代码 ParkingController.java
- package com.example.parking.controller;
- import com.example.parking.model.ParkingRequest;
- import com.example.parking.service.ParkingService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.http.ResponseEntity;
- import org.springframework.web.bind.annotation.*;
- /**
- * 提供HTTP接口用于车辆进入和离开停车场的操作。
- */
- @RestController
- @RequestMapping("/parking")
- publicclass ParkingController {
- @Autowired
- private ParkingService parkingService;
- /**
- * 车辆进入停车场。
- * @param request 包含车辆ID的请求对象
- * @return 成功或失败的消息
- */
- @PostMapping("/enter")
- public ResponseEntity<String> enterParkingLot(@RequestBody ParkingRequest request) {
- boolean success = parkingService.enterParkingLot(request.getCarId());
- if (success) {
- return ResponseEntity.ok("Vehicle entered parking lot.
- ");
- } else {
- return ResponseEntity.badRequest().body("Failed to enter parking lot.");
- }
- }
- /**
- * 车辆离开停车场。
- * @param request 包含车辆ID和停留时间的请求对象
- * @return 成功或失败的消息
- */
- @PostMapping("/leave")
- public ResponseEntity<String> leaveParkingLot(@RequestBody ParkingRequest request) {
- long durationInMinutes = request.getDurationInMinutes();
- boolean success = parkingService.leaveParkingLot(request.getCarId(), durationInMinutes);
- if (success) {
- return ResponseEntity.ok("Vehicle left parking lot. Fee calculated and stored.
- ");
- } else {
- return ResponseEntity.badRequest().body("Failed to leave parking lot.");
- }
- }
- }
复制代码 ParkingDao.java
- package com.example.parking.dao;
- import com.example.parking.entity.ParkingRecord;
- import org.springframework.stereotype.Repository;
- import java.util.HashMap;
- import java.util.Map;
- /**
- * 数据访问对象,负责存储和检索停车记录。
- */
- @Repository
- publicclass ParkingDao {
- privatefinal Map<String, ParkingRecord> records = new HashMap<>();
- /**
- * 记录车辆进入停车场的时间。
- * @param carId 车辆ID
- * @return 是否成功记录
- */
- public boolean saveEntry(String carId) {
- if (!records.containsKey(carId)) {
- records.put(carId, new ParkingRecord(carId));
- returntrue;
- }
- returnfalse;
- }
- /**
- * 获取指定车辆的停车记录。
- * @param carId 车辆ID
- * @return 停车记录
- */
- public ParkingRecord getRecord(String carId) {
- return records.get(carId);
- }
- /**
- * 移除指定车辆的停车记录。
- * @param carId 车辆ID
- * @return 是否成功移除
- */
- public boolean removeRecord(String carId) {
- return records.remove(carId) != null;
- }
- }
复制代码 ParkingRecord.java
- package com.example.parking.entity;
- import java.time.LocalDateTime;
- /**
- * 实体类,表示一辆车的停车记录。
- */
- publicclass ParkingRecord {
- private String carId;
- private LocalDateTime entryTime;
- /**
- * 构造函数,初始化停车记录。
- * @param carId 车辆ID
- */
- public ParkingRecord(String carId) {
- this.carId = carId;
- this.entryTime = LocalDateTime.now();
- }
- /**
- * 获取车辆ID。
- * @return 车辆ID
- */
- public String getCarId() {
- return carId;
- }
- /**
- * 获取车辆进入停车场的时间。
- * @return 进入时间
- */
- public LocalDateTime getEntryTime() {
- return entryTime;
- }
- }
复制代码 ParkingRequest.java
- package com.example.parking.model;
- /**
- * 请求模型,包含车辆ID和停留时间。
- */
- publicclass ParkingRequest {
- private String carId;
- privatelong durationInMinutes;
- // Getters and Setters
- /**
- * 获取车辆ID。
- * @return 车辆ID
- */
- public String getCarId() {
- return carId;
- }
- /**
- * 设置车辆ID。
- * @param carId 车辆ID
- */
- public void setCarId(String carId) {
- this.carId = carId;
- }
- /**
- * 获取停留时间(分钟)。
- * @return 停留时间
- */
- public long getDurationInMinutes() {
- return durationInMinutes;
- }
- /**
- * 设置停留时间(分钟)。
- * @param durationInMinutes 停留时间
- */
- public void setDurationInMinutes(long durationInMinutes) {
- this.durationInMinutes = durationInMinutes;
- }
- }
复制代码 ParkingService.java
- package com.example.parking.service;
- /**
- * 接口定义了进入和离开停车场的方法。
- */
- public interface ParkingService {
- /**
- * 车辆进入停车场。
- * @param carId 车辆ID
- * @return 是否成功进入
- */
- boolean enterParkingLot(String carId);
- /**
- * 车辆离开停车场。
- * @param carId 车辆ID
- * @param durationInMinutes 停留时间(分钟)
- * @return 是否成功离开
- */
- boolean leaveParkingLot(String carId, long durationInMinutes);
- }
复制代码 ParkingServiceImpl.java
- package com.example.parking.service.impl;
- import com.example.parking.dao.ParkingDao;
- import com.example.parking.entity.ParkingRecord;
- import com.example.parking.service.ParkingService;
- import org.apache.curator.framework.CuratorFramework;
- import org.apache.curator.framework.recipes.locks.InterProcessMutex;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import java.util.concurrent.TimeUnit;
- /**
- * 实现了ParkingService接口的具体逻辑,并使用ZooKeeper的互斥锁来保证同一辆车的计费操作不会被并发执行。
- */
- @Service
- publicclass ParkingServiceImpl implements ParkingService {
- privatefinal CuratorFramework client;
- privatefinal ParkingDao parkingDao;
- @Autowired
- public ParkingServiceImpl(CuratorFramework client, ParkingDao parkingDao) {
- this.client = client;
- this.parkingDao = parkingDao;
- }
- /**
- * 车辆进入停车场。
- * @param carId 车辆ID
- * @return 是否成功进入
- */
- @Override
- public boolean enterParkingLot(String carId) {
- return parkingDao.saveEntry(carId);
- }
- /**
- * 车辆离开停车场。
- * @param carId 车辆ID
- * @param durationInMinutes 停留时间(分钟)
- * @return 是否成功离开
- */
- @Override
- public boolean leaveParkingLot(String carId, long durationInMinutes) {
- InterProcessMutex lock = new InterProcessMutex(client, "/locks/" + carId);
- try {
- if (lock.acquire(10, TimeUnit.SECONDS)) {
- try {
- if (!enterParkingLot(carId)) {
- returnfalse;
- }
- ParkingRecord record = parkingDao.getRecord(carId);
- double fee = calculateFee(record, durationInMinutes);
- System.out.println("Calculated fee for " + carId + ": $" + fee);
- // Logic to store the fee in a database or other storage system
- parkingDao.removeRecord(carId);
- returntrue;
- } finally {
- lock.release();
- }
- } else {
- System.err.println("Could not acquire lock for " + carId);
- returnfalse;
- }
- } catch (Exception e) {
- e.printStackTrace();
- returnfalse;
- }
- }
- /**
- * 计算停车费用。
- * @param record 停车记录
- * @param durationInMinutes 停留时间(分钟)
- * @return 停车费用
- */
- private double calculateFee(ParkingRecord record, long durationInMinutes) {
- double ratePerMinute = 0.5;
- return durationInMinutes * ratePerMinute;
- }
- }
复制代码 ParkingApplication.java
- package com.example.parking;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- /**
- * Spring Boot应用的主类。
- */
- @SpringBootApplication
- public class ParkingApplication {
- public static void main(String[] args) {
- SpringApplication.run(ParkingApplication.class, args);
- }
- }
复制代码 测试结果
“ 确保ZooKeeper服务器正在运行。
车辆进入停车场
- http://localhost:8080/parking/enter
- {
- "carId": "A123"
- }
复制代码
- 相应:
- Vehicle entered parking lot.
复制代码 车辆离开停车场
- http://localhost:8080/parking/leave
- {
- "carId": "A123",
- "durationInMinutes": 60
- }
复制代码
- 相应:
- Vehicle left parking lot. Fee calculated and stored.
复制代码 - 控制台输出:
- Calculated fee for A123: $30.0
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |