2017-02-25 5 views
1
org.springframework.beans.NotReadablePropertyException: Invalid property 
'productss' of bean class [java.util.ArrayList]: Bean property 
'productss' is not readable or has an invalid getter method: Does the 
return type of the getter match the parameter type of the setter? 

/JenuazNotReadablePropertyException:ShopJavaProject、と私のgit ID:jenuaz Beanクラスの無効なプロパティ 'productss' [java.util.ArrayListの]

入れたURL gitの後、私はgitの上のプロジェクトを持っています。

+0

あなたはエラーを生成し、あなたのコードを提供する必要があります。 – jww

答えて

0

あなたはOrderesControllerこのモデルのattribureを使用している:

@ModelAttribute("orderes") 
    public Orderes getFrom(){ 
     return new Orderes(); 
    } 

そして、あなたはJPSページのフォームの代わりに、orderess上でそれを使用する必要があります。また、製品のフィールドはproductないproductssと呼ばれ、製品のリストがproductsと呼ばれている:

<form:form class="form-horizontal" action="/admin/" method="POST" modelAttribute="orderes"> 
     <div class="form-group"> 
      <label for="orderes" class="col-sm-2 control-label">Product</label> 
      <div class="col-sm-10"> 
       <form:select class="form-control" path="product" id="products" items="${products}" itemValue="id" itemLabel="name"/> 
      </div> 
関連する問題