Ich brauche Werte von einem Array zu wählen und es anderen Array zuweisen. Unter Verwendung des Frühlings-Thymoleaf. Keine Ahnung, wie diese ausgewählten Werte abgerufen werden. Meine Klassen:Eingang in Array Thymeleaf
@Entity
public class Collaborator {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@NotNull
@Size (min=3, max=32)
private String name;
@NotNull
@ManyToOne (cascade = CascadeType.ALL)
private Role role;
public Collaborator() {}...
@Entity
public class Role {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@NotNull
@Size(min = 3, max = 99)
private String name;
public Role() {}....
Meine Controller:
@RequestMapping("/project_collaborators/{projectId}")
public String projectCollaborators(@PathVariable Long projectId, Model model) {
Project project = mProjectService.findById(projectId);
List<Collaborator> allCollaborators = mCollaboratorService.findAll();
List<Collaborator> assignments = new ArrayList<>();
if (project.getRolesNeeded()!=null) {
for (int i=0;i<project.getRolesNeeded().size();i++) {
assignments.add(new Collaborator("Unassigned", project.getRolesNeeded().get(i)));
assignments.get(i).setId((long) 0);
}
}
model.addAttribute("assignments", assignments);
model.addAttribute("allCollaborators", allCollaborators);
model.addAttribute("project", project);
return "project_collaborators";
}
@RequestMapping(value = "/project_collaborators/{projectId}", method = RequestMethod.POST)
public String projectCollaboratorsPost(@ModelAttribute Project project, @PathVariable Long projectId, Model model) {
Project p = mProjectService.findById(projectId);
//mProjectService.save(project);
return "redirect:/project_detail/{projectId}";
}
Und Vorlage:
<form th:action="@{'/project_collaborators/' + ${project.id}}" method="post" th:object="${project}">
<label th:text="'Edit Collaborators: ' + ${project.name}">Edit Collaborators: Website Project</label>
<ul class="checkbox-list">
<li th:each="a : ${assignments}">
<span th:text="${a.role.name}" class="primary">Developer</span>
<div class="custom-select">
<span class="dropdown-arrow"></span>
<select th:field="${a.id}">
<option th:each="collaborator : ${allCollaborators}" th:value="${collaborator.id}" th:text="${collaborator.name}">Michael Pemulis</option>
</select>
</div>
</li>
</ul>
<div class="actions">
<input type="submit" value="Save" class="button"/>
<a href="#" class="button button-secondary">Cancel</a>
</div>
</form>
Wie Sie sehen, ich möchte Benutzer für jede Rolle wählen lassen (roleNeeded) alle Mitarbeiter aus (allCollaborators) und behalte diese Zuweisungen in Liste (Zuweisungen).
Und ich bekomme Fehlermeldung:
ava.lang.IllegalStateException: Weder BindingResult noch ebenes Ziel Objekt für Bohnen Namen 'a' als Anfrage Attribut verfügbar
So Frage lautet: Wie Um es zu lösen, weisen Sie in der Vorlage Werte von einem Array zum anderen zu und rufen Sie diese Werte in meinem Controller ab.
Vielen Dank, funktioniert perfekt! – zzheads
@zzheads Schön zu hören. Vergiss nicht, die Antwort zu akzeptieren, bitte;). – BitExodus
Sicher, fertig. Kannst du bitte meine andere Frage zum selben Projekt überprüfen?) hier: http://stackoverflow.com/questions/38693971/input-type-date-thymeleaf – zzheads