2

我有 Item 类和 Category 类。Item 类具有对 Category 类的引用。

项目类别如下。

@Entity
@Table(name = "ITEMS")
public class Item {

@OneToOne
private Category category;
    public Category getCategory() {
        return category;
    }

    public void setCategory(Category category) {
        this.category = category;
    }
}

类别类别如下。

package com.easypos.models;

import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.validation.constraints.Size;

@Entity
@Table(name="category")
public class Category implements Serializable{

    @Id
    @GeneratedValue(strategy = GenerationType.TABLE)
    private int id;
    @Size(min = 2, max = 30)
    @Column(name = "CATEGORY_NAME", nullable = false)
    private String categoryName;
    @Column(name = "CATEGORY_REMARK", nullable = true)
    private String categoryDescription;


    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getCategoryName() {
        return categoryName;
    }

    public void setCategoryName(String categoryName) {
        this.categoryName = categoryName.trim();
    }

    public String getCategoryDescription() {
        return categoryDescription;
    }

    public void setCategoryDescription(String categoryDescription) {
        this.categoryDescription = categoryDescription;
    }



    @Override
    public String toString() {
        return this.categoryName;
    }



}

我的控制器方法如下

@RequestMapping(value = "/add", method = RequestMethod.GET)
    public String create(Model model) {
        item = new Item();
        model.addAttribute("title", "Add Item");
        model.addAttribute("categories", categoryService.findAll());
        model.addAttribute("suppliers", supplierService.findAll());
        model.addAttribute(item);
        return "item/create";
    }

    @RequestMapping(value = "/add", method = RequestMethod.POST)
    public String savePorduct(Model model, @ModelAttribute("item") @Valid Item item, BindingResult result,
            RedirectAttributes redirectAttributes) {
        itemValidator.validate(item, result);
        if (result.hasErrors()) {
            model.addAttribute("title", "Add Item");
            model.addAttribute("categories", categoryService.findAll());
            model.addAttribute("suppliers", supplierService.findAll());
            return "item/create";
        }
        redirectAttributes.addFlashAttribute("message", "Item successfully saved.");
        itemService.saveitem(item);
        return "redirect:/item/";
    }

在我的Jsp文件中,我使用以下代码在选择框中显示类别。

has-error "> 类别

<div class="col-sm-9"> <sf:select path="category" cssClass="form-control"> <sf:options items='${categories}' itemValue='id'/> </sf:select> <p><sf:errors path="category" /></p> </div> </div>

在我的Jsp文件中,当我提交表单时,我收到“找不到匹配的编辑器或转换策略”的错误 - 完整的错误日志如下:

Failed to convert property value of type [java.lang.String] to required type [com.easypos.models.Category] for property category; nested exception is java.lang.IllegalStateException: Cannot convert value of type [java.lang.String] to required type [com.easypos.models.Category] for property category: no matching editors or conversion strategy found
4

3 回答 3

0

toString()在这种情况下不会帮助你。您将需要注册的 PropertyEditor 或 Formatter 或 Converter 来将字符串数据转换为要发送到服务器的类别。在给您任何代码示例之前,我需要查看您的 JSP 文件的外观,但这应该是一个很好的起点。

于 2016-08-19T12:52:02.850 回答
0

这里 ITEM 表是多余的。因为 Item 类只包含一个属性,并且是一对一的关系。所以你应该避免这个实体类。还有一件事,每个实体类都应该有一个带有 @Id 注释的主键。

很明显,Item 类采用 Category 类型属性,而您的 jsp 表单中没有 Category 类型属性。例如:

<form action="action_url" method="POST">
    <input type="text" name="a"/>
    <input type="text" name="b"/>
    <input type="text" name="c"/>
    <input type="submit" value="Submit"/>
</form>

对于这个 jsp 表单,您的实体/模型类应该喜欢,

@Entity
@Table(name = "CATEGORY")
public class Category implements Serializable {

    @Id
    @GeneratedValue
    @Column(name = "ID")
    private Long id;

    @Column(name = "C_1")
    private String a;

    @Column(name = "C_2")
    private String b;

    @Column(name = "C_2")
    private String c;

    ...Getter and Setter here....
}

如果要自动绑定它们,必须确保表单元素名称和模型属性名称相同。但是在你的jsp页面中没有名为“category”的元素,你不能创建这种类型的表单元素,因为Category是一个用户定义的类,而html不知道这种类型的元素。我希望你明白了。

您应该使用 Category 对象来绑定元素。像这样:

@RequestMapping(value = "/add", method = RequestMethod.POST)
public String savePorduct(Model model, @ModelAttribute("category") Category category,  BindingResult result) {
--other logic here--
}

我希望这可以解决您的问题。

于 2016-08-19T16:47:25.977 回答
0

让我们澄清一件事。如果要绑定嵌套对象字段,则必须设置 html 元素的 'name' 属性,例如 name="object.field" 在这里,您尝试将 select 元素(即字符串)的值绑定到您的项目类中的类别字段(即类别类型)。这行不通。

尝试

path = "category.categoryName"

看看它是否有效。

无论如何,您应该在项目实体上有一个主键。

于 2016-08-19T18:52:30.657 回答