如何使用Java Record with Data from a Database使用数据填充JavaFX TableView

6xfqseft  于 2024-01-05  发布在  Java
关注(0)|答案(2)|浏览(182)

简短问题:使用记录从数据库中填充数据到Java FX表视图的最佳方法是什么?(而不是使用具有getter和setter的典型对象类)
**完整问题:**我最近创建了这个InventoryRecord.java文件,以取代我用来填充tableview的传统对象“Inventory”:

  1. import java.util.List;
  2. public record InventoryRecord(
  3. String make
  4. , String model
  5. , String officialModel
  6. , String upc
  7. , List<String> category
  8. , String type
  9. , String description
  10. ,String vendor
  11. , Double cost
  12. , Double price
  13. ) {}

字符串
我想使用这个记录作为我的框架,使用数据库中的数据填充我的TableView(在这种情况下是Neo4j,但这并不重要)
在我有这个InventoryRecord记录之前,我使用了一个典型的名为Inventory的类,它看起来像这样(当然,我已经缩短了它以保持问题的可读性,假设每个Inventory属性都有getter/setter。

  1. public class Inventory {
  2. private String make;
  3. private String model;
  4. private String officialModel;
  5. private List<String> category;
  6. private String type;
  7. private String description;
  8. private String vendor;
  9. private Double cost;
  10. private Double price;
  11. private String upc;
  12. //Method for actual instantiation of an Inventory Object, uses setter methods in order to perform validations for each field
  13. public Inventory(String make, String model, String officialModel, String upc, List<String> category, String type, String description,String vendor, Double cost, Double price) {
  14. this.setMake(make);
  15. this.setModel(model);
  16. this.setOfficialModel(officialModel);
  17. this.setUpc(upc);
  18. this.setCategory(category);
  19. this.setType(type);
  20. this.setDescription(description);
  21. this.setVendor(vendor);
  22. this.setCost(cost);
  23. this.setPrice(price);
  24. }


这就是我用查询结果填充表的方式

  1. while (result.hasNext()) {
  2. //result.next() serves as our iterator that increments us through the records and through the while loop
  3. Record record = result.next();
  4. String make = record.get("make").asString();
  5. String model = record.get("model").asString();
  6. String officialModel = record.get("officialModel").asString();
  7. String upc = record.get("upc").asString();
  8. List<String> category = record.get("categories").asList(Value::asString);
  9. String type = record.get("type").asString();
  10. String desc = record.get("description").asString();
  11. String vendor = record.get("vendor").asString();
  12. Double cost = record.get("cost").isNull() ? null : record.get("cost").asDouble();
  13. Double price = record.get("price").isNull() ? null : record.get("price").asDouble();
  14. //when creating the anonymous Inventory items, you can send them to the constructor with any name
  15. inventoryTable.getItems().add(new Inventory(make, model, officialModel,upc, category, type, desc,vendor, cost, price));
  16. }
  17. //The property value factory must use the property names as string arguments in the constructor
  18. makeColumn.setCellValueFactory(new PropertyValueFactory<>("make"));
  19. modelColumn.setCellValueFactory(new PropertyValueFactory<>("model"));
  20. officialModelColumn.setCellValueFactory(new PropertyValueFactory<>("officialModel"));
  21. categoryColumn.setCellValueFactory(new PropertyValueFactory<>("category"));
  22. upcColumn.setCellValueFactory(new PropertyValueFactory<>("upc"));
  23. typeColumn.setCellValueFactory(new PropertyValueFactory<>("type"));
  24. descriptionColumn.setCellValueFactory(new PropertyValueFactory<>("description"));
  25. vendorColumn.setCellValueFactory(new PropertyValueFactory<>("vendor"));
  26. costColumn.setCellValueFactory(new PropertyValueFactory<>("cost"));
  27. priceColumn.setCellValueFactory(new PropertyValueFactory<>("price"));
  28. inventoryTable.setItems(inventoryTable.getItems());


但是我怎么能把所有的东西都切换到一个库存记录而不仅仅是库存对象,.setCellValueFactory和PropertyValueFactory不喜欢他们看到的东西。我试过这个(在Google Bard的帮助下),它似乎没有给予任何字符串的错误:makeColumn.setCellValueFactory(cellData -> new SimpleStringProperty(cellData.getValue().make()));但是对于List和Double属性/列,我试过这个:

  1. categoryColumn.setCellValueFactory(cellData -> new SimpleListProperty<List<String>>(cellData.getValue().category()));
  2. costColumn.setCellValueFactory(cellData -> new SimpleDoubleProperty(cellData.getValue().cost()));


类型不匹配:无法从SimpleListProperty<List >转换为ObservableValue<List>类型不匹配:无法从SimpleDoubleProperty转换为ObservableValue
任何帮助是非常,非常感谢!
我试过这个:

  1. while (result.hasNext()) {
  2. //result.next() serves as our iterator that increments us through the records and through the while loop
  3. Record record = result.next();
  4. String make = record.get("make").asString();
  5. String model = record.get("model").asString();
  6. String officialModel = record.get("officialModel").asString();
  7. String upc = record.get("upc").asString();
  8. List<String> category = record.get("categories").asList(Value::asString);
  9. String type = record.get("type").asString();
  10. String desc = record.get("description").asString();
  11. String vendor = record.get("vendor").asString();
  12. Double cost = record.get("cost").isNull() ? null : record.get("cost").asDouble();
  13. Double price = record.get("price").isNull() ? null : record.get("price").asDouble();
  14. // Create an InventoryRecord directly from the Record
  15. InventoryRecord inventoryRecord = new InventoryRecord(make,model,officialModel,upc,category,type,desc,vendor,cost,price);
  16. // Add the InventoryRecord to the table items
  17. inventoryTable.getItems().add(inventoryRecord);
  18. }
  19. //The property value factory must use the property names as string arguments in the constructor
  20. makeColumn.setCellValueFactory(cellData -> new SimpleStringProperty(cellData.getValue().make()));
  21. modelColumn.setCellValueFactory(cellData -> new SimpleStringProperty(cellData.getValue().model()));
  22. officialModelColumn.setCellValueFactory(cellData -> new SimpleStringProperty(cellData.getValue().officialModel()));
  23. categoryColumn.setCellValueFactory(cellData -> new SimpleListProperty<List<String>>(cellData.getValue().category()));
  24. upcColumn.setCellValueFactory(cellData -> new SimpleStringProperty(cellData.getValue().upc()));
  25. typeColumn.setCellValueFactory(cellData -> new SimpleStringProperty(cellData.getValue().type()));
  26. descriptionColumn.setCellValueFactory(cellData -> new SimpleStringProperty(cellData.getValue().description()));
  27. vendorColumn.setCellValueFactory(cellData -> new SimpleStringProperty(cellData.getValue().vendor()));
  28. costColumn.setCellValueFactory(cellData -> new SimpleDoubleProperty(cellData.getValue().cost()));
  29. priceColumn.setCellValueFactory(cellData -> new SimpleDoubleProperty(cellData.getValue().price()));
  30. inventoryTable.setItems(inventoryTable.getItems());


但得到这些错误:类型不匹配:无法从SimpleListProperty<List >转换为ObservableValue<List>类型不匹配:无法从SimpleDoubleProperty转换为ObservableValue
我希望看到类似这样的东西(这是它如何与我的Inventory类一起工作的,我试图用InventoryRecord替换它):TableView using Inventory Class

nue99wik

nue99wik1#

PropertyValueFactory类不能处理记录,至少在JavaFX 21中不能,但是你已经知道了(I recommend avoiding that class regardless)。你得到的错误与你将类改为记录没有直接关系。它们是由在一些单元格值工厂中返回错误的类型引起的。
一个SimpleListProperty<E>已经是一个E的列表。通过用List<String>参数化它,你就说你有一个list of lists的字符串。根据你得到的错误,这不是列的值类型。从适当的单元格值工厂返回一个SimpleObjectProperty<List<String>>
另外,SimpleDoublePropertyObservableValue<Number>。但是从你得到的错误来看,你实际上需要返回ObservableValue<Double>。改变适当的单元格值工厂以返回SimpleObjectProperty<Double>。另一种选择是将列的值类型从Double改为Number。然而,我推荐前一种方法。
为了简化这一点,你可以在你的类中创建一个实用方法。类似于:

  1. private <T> void setCellValueFactory(
  2. TableColumn<InventoryRecord, T> column, Callback<InventoryRecord, T> callback) {
  3. column.setCellValueFactory(
  4. data -> {
  5. T value = callback.call(data.getValue());
  6. return new SimpleObjectProperty<>(value);
  7. });
  8. }

字符串
这将允许您像这样定义所有单元格值工厂:

  1. setCellValueFactory(makeColumn, InventoryRecord::make);
  2. setCellValueFactory(modelColumn, InventoryRecord::model);
  3. setCellValueFactory(officialModelColumn, InventoryRecord::officialModel);
  4. setCellValueFactory(categoryColumn, InventoryRecord::category);
  5. setCellValueFactory(upcColumn, InventoryRecord::upc);
  6. setCellValueFactory(typeColumn, InventoryRecord::type);
  7. setCellValueFactory(descriptionColumn, InventoryRecord::description);
  8. setCellValueFactory(vendorColumn, InventoryRecord::vendor);
  9. setCellValueFactory(costColumn, InventoryRecord::cost);
  10. setCellValueFactory(priceColumn, InventoryRecord::price);

展开查看全部
kpbwa7wx

kpbwa7wx2#

感谢@Slaw非常优雅的解决方案和解释。我达到了一个稍微不同的解决方案,因为在我的研究中,我意识到我不知道什么是JavaFX bean。主要的解决方案是我只是设置真正的JavaFX getter和setter,在我的实际库存构造函数中使用bean“property”方法。
这是我的构造函数最终看起来像(缩短)的各种数据类型:

  1. public class Inventory {
  2. private StringProperty officialModel;
  3. private ListProperty<String> category;
  4. private DoubleProperty cost;
  5. public final String getOfficialModel() {
  6. return this.officialModelProperty().get();
  7. }
  8. public final void setOfficialModel(final String officialModel) {
  9. this.officialModelProperty().set(officialModel);
  10. }
  11. public final ListProperty<String> categoryProperty() {
  12. if (category == null) {
  13. category = new SimpleListProperty<String>(this, "category");
  14. }
  15. return category;
  16. }
  17. public final ObservableList<String> getCategory() {
  18. return this.categoryProperty().get();
  19. }
  20. public final void setCategory(final ObservableList<String> category) {
  21. this.categoryProperty().set(category);
  22. }
  23. public final DoubleProperty costProperty() {
  24. if (cost == null) {
  25. cost = new SimpleDoubleProperty(this, "cost");
  26. }
  27. return cost;
  28. }
  29. public final double getCost() {
  30. return this.costProperty().get();
  31. }
  32. public final void setCost(final double cost) {
  33. this.costProperty().set(cost);
  34. }

字符串
我的CellValueFactory看起来像这样:

  1. makeColumn.setCellValueFactory(cellData -> cellData.getValue().makeProperty());
  2. modelColumn.setCellValueFactory(cellData -> cellData.getValue().modelProperty());
  3. officialModelColumn.setCellValueFactory(cellData -> cellData.getValue().officialModelProperty());
  4. //categoryColumn must be read only, so it can't be mutated by user, which protects the list data
  5. categoryColumn.setCellValueFactory(cellData -> new ReadOnlyObjectWrapper<>(cellData.getValue().categoryProperty().get()));
  6. upcColumn.setCellValueFactory(cellData -> cellData.getValue().upcProperty());
  7. typeColumn.setCellValueFactory(cellData -> cellData.getValue().typeProperty());
  8. descriptionColumn.setCellValueFactory(cellData -> cellData.getValue().descriptionProperty());
  9. vendorColumn.setCellValueFactory(cellData -> cellData.getValue().vendorProperty());
  10. costColumn.setCellValueFactory(cellData -> cellData.getValue().costProperty().asObject()); // Wrap double as Object for ObservableValue
  11. priceColumn.setCellValueFactory(cellData -> cellData.getValue().priceProperty().asObject()); // Wrap double as Object for ObservableValue


让我知道这个解决方案是否有任何重大缺陷,如果有,我可能会改用你的方法!

展开查看全部

相关问题