私はThymeleafで作業していますが、オブジェクトバインディングを試みていますが、わかりません私はリストを持つオブジェクトを持っている場合、それを行う方法。私に説明してみましょう:['java.lang.String []'タイプのプロパティ値をプロパティ 'java.util.List'に必要なタイプに変換できませんでした。
マイモデル:
@Entity
public class Project {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@NotNull
private String name;
@NotNull
@Lob
private String description;
@NotNull
private Date startDate;
private String status;
@ManyToMany
private List<Role> rolesNeeded;
@ManyToMany
private List<Collaborator> collaborators;
public Project() {
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public List<Role> getRolesNeeded() {
return rolesNeeded;
}
public void setRolesNeeded(List<Role> rolesNeeded) {
this.rolesNeeded = rolesNeeded;
}
public List<Collaborator> getCollaborators() {
return collaborators;
}
public void setCollaborators(List<Collaborator> collaborators) {
this.collaborators = collaborators;
}
}
私のHTMLフォーム:
<form method="post" action="addproject" th:object="${project}">
<div>
<label for="project_name"> Project Name:</label>
<input th:field="*{name}" type="text" name="project_name"/>
</div>
<div>
<label for="project_description">Project Description:</label>
<textarea th:field="*{description}" rows="4" name="project_description"></textarea>
</div>
<div>
<label for="project_status">Project Status:</label>
<div class="custom-select">
<span class="dropdown-arrow"></span>
<select th:field="*{status}" name="project_status">
<option value="active">Active</option>
<option value="archived">Archived</option>
<option value="not_started">Not Started</option>
</select>
</div>
</div>
<div>
<label for="project_roles">Project Roles:</label>
<ul class="checkbox-list">
<li th:each="role : ${roles}">
<input th:field="*{rolesNeeded}" type="checkbox" name="project_roles" th:value="${role}"/>
<span class="primary" th:text="${role.name}"> Developer</span>
</li>
</ul>
</div>
<div class="actions">
<input type="submit" value="Save" class="button"/>
<a href="#" class="button button-secondary">Cancel</a>
</div>
</form>
そして、私はエラーが取得しています:私は理解限り、基本的に
ERROR!!!!: Field error in object 'project' on field 'rolesNeeded': rejected value [[email protected],[email protected]]; codes [typeMismatch.project.rolesNeeded,typeMismatch.rolesNeeded,typeMismatch.java.util.List,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [project.rolesNeeded,rolesNeeded]; arguments []; default message [rolesNeeded]]; default message [Failed to convert property value of type 'java.lang.String[]' to required type 'java.util.List' for property 'rolesNeeded'; nested exception is java.lang.IllegalStateException: Cannot convert value of type 'java.lang.String' to required type 'com.imprender.instateam.model.Role' for property 'rolesNeeded[0]': no matching editors or conversion strategy found]
をチェックボックスの入力はString []を返しますが、私のオブジェクトはリストを必要とするので、バインディングは実行できません。
リスト内の配列をどのようにバインドできますか?(例がありますか)
ありがとうございます。そうでない場合は
<ul class="checkbox-list">
<li th:each="role,stat : ${project.rolesNeeded}">
<input th:field="*{rolesNeeded[__${stat.index}__].active}" type="checkbox"/>
<input th:field="*{rolesNeeded[__${stat.index}__].name}" type="hidden"/>
<span class="primary" th:text="${role.name}">Developer</span>
</li>
</ul>
は、あなたが隠しフィールドでrolesNeeded
を保存するとJavaScriptでそれらを読み込むことができます:あなたのRole
Beanはactive
ブール型プロパティを持っている場合