无法将字符串转换为我的自定义数据类型类别

时间:2016-08-19 11:06:53

标签: java spring javax.persistence

我有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文件中,我使用以下代码在选择框中显示类别。

                             有错误">                                 分类

<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文件中,当我提交表单时,我收到错误,上面写着&#34;找不到匹配的编辑器或转换策略&#34; - 完整的错误日志如下:

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

3 个答案:

答案 0 :(得分:0)

在这种情况下,

toString()无法帮助您。您需要注册PropertyFditor或Formatter或Converter才能将字符串数据转换为您要发送到服务器的Category。在给你任何代码示例之前,我需要看看你的JSP文件是如何看的,但是this应该是一个很好的起点。

答案 1 :(得分: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--
}

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

答案 2 :(得分:0)

让我们说清楚一件事。如果要绑定嵌套对象字段,则必须设置html元素的'name'属性,如name =“object.field” 在这里,您尝试将select元素(String)的值绑定到Item类中的类别字段(类型为Category)。这不起作用。

尝试

path = "category.categoryName"

看看它是否有效。

无论如何,你应该在Item Entity上有一个主键。