spring boot水果表名称价格数量
在Spring Boot中创建一个水果表包含名称、价格和数量的步骤如下:
- 创建一个名为Fruit的Java类,用于表示水果表的实体。在该类中定义名称、价格和数量的属性,并提供相应的getter和setter方法。
public class Fruit {
private String name;
private double price;
private int quantity;
public Fruit() {
}
public Fruit(String name, double price, int quantity) {
this.name = name;
this.price = price;
this.quantity = quantity;
}
// getter和setter方法
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
public int getQuantity() {
return quantity;
}
public void setQuantity(int quantity) {
this.quantity = quantity;
}
}
- 在Spring Boot应用的主类中创建一个名为FruitController的REST控制器,用于处理水果表的相关请求。
@RestController
@RequestMapping("/fruits")
public class FruitController {
private List<Fruit> fruits = new ArrayList<>();
@GetMapping
public List<Fruit> getAllFruits() {
return fruits;
}
@PostMapping
public void addFruit(@RequestBody Fruit fruit) {
fruits.add(fruit);
}
}
- 运行Spring Boot应用,并通过HTTP请求访问水果表的相关接口,例如:
- 获取所有水果的接口:GET /fruits
- 添加水果的接口:POST /fruits,请求体为包含名称、价格和数量的JSON对象
这样就可以通过Spring Boot创建一个包含名称、价格和数量的水果表
原文地址: http://www.cveoy.top/t/topic/iYWt 著作权归作者所有。请勿转载和采集!