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