如何在具有选定值的jsp/jstl中进行多选?

sto*_*ter 1 java jsp jstl el

您好我有一个用户有一些角色User.class

public class User {

 private Long id;
 private String firstName;
 private String lastName;

 private Set<Role> roles = new HashSet<Role>(0);
Run Code Online (Sandbox Code Playgroud)

public Long getId(){return id; public void setId(Long id){this.id = id; }

 public String getFirstName() { return this.firstName; }
 public void setFirstName(String firstname) { this.firstName = firstname; }

 public String getLastName() { return this.lastName; }
 public void setLastName(String lastname) { this.lastName = lastname; }

 public Set<Role> getRoles() { return this.roles; }
 public void setRoles(Set<Role> roles) { this.roles = roles; }
}
Run Code Online (Sandbox Code Playgroud)

Role.class

public class Role {

 private Long id;
 private String name;

 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; }

}
Run Code Online (Sandbox Code Playgroud)

在jsp文件中,我想进行一个多选,它将具有所选值的所有角色(用户拥有的角色).

我试过了:

<select id="roles" name="roles" multiple="true" size="4">
 <c:forEach items="${allRoles}" var="role">
  <option value="${role.id}" <c:if test="${role.id == roleSelected.id}">selected</c:if> >${role.name}</option>
 </c:forEach>
</select>
Run Code Online (Sandbox Code Playgroud)

其中allRoles表示所有角色,roleSelected表示user.roles.但它不起作用,有没有任何方式可以在jstl中说"如果在user.roles中的角色然后被选中"?感谢任何建议.


更新:

不知道它不工作,我把一个记录器放在那个类我有这个:

 public static boolean contains(Collection<?> collection, Object object) {
  System.out.println("coll = " + collection.toString());
  System.out.println("obj="+ object.toString());
  System.out.println("res="+ collection.contains(object));
     return collection.contains(object);
   }
Run Code Online (Sandbox Code Playgroud)

在日志中我有这个,它应该在第二次测试中得到结果:

coll = [Id :2;Code: TESTName: Temp Manager;Enabled: true;Comment: ;]
obj=Id :1;Code: ADMName: ADMIN;Enabled: true;Comment: For Adminstrators;
res=false
coll = [Id :2;Code: TESTName: Temp Manager;Enabled: true;Comment: ;]
obj=Id :2;Code: TESTName: Temp Manager;Enabled: true;Comment: ;
res=false
coll = [Id :2;Code: TESTName: Temp Manager;Enabled: true;Comment: ;]
obj=Id :3;Code: RHHName: TECHNOMEDIA;Enabled: true;Comment: Dfdf;
res=false
coll = [Id :2;Code: TESTName: Temp Manager;Enabled: true;Comment: ;]
obj=Id :4;Code: RESPONSName: Refd;Enabled: true;Comment: Sdsds;
res=false
Run Code Online (Sandbox Code Playgroud)

Bal*_*usC 5

我会为此创建一个EL函数.

package com.example;

import java.util.Collection;

public final class Functions {

    private Functions() {
        //
    }

    public static boolean contains(Collection<Object> collection, Object item) {
        return collection.contains(item);
    }

}
Run Code Online (Sandbox Code Playgroud)

定义它/WEB-INF/functions.tld

<?xml version="1.0" encoding="UTF-8" ?>
<taglib 
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd"
    version="2.1">

    <display-name>Custom Functions</display-name>    
    <tlib-version>1.0</tlib-version>
    <uri>http://example.com/functions</uri>

    <function>
        <name>contains</name>
        <function-class>com.example.Functions</function-class>
        <function-signature>boolean contains(java.util.Collection, java.lang.Object)</function-signature>
    </function>
</taglib>
Run Code Online (Sandbox Code Playgroud)

然后你可以按如下方式使用它

<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@taglib uri="http://example.com/functions" prefix="f" %>
...
<select name="roles" multiple>
    <c:forEach items="${allRoles}" var="role">
        <option value="${role.id}" ${f:contains(user.roles, role) ? 'selected' : ''}>${role.name}</option>
    </c:forEach>
</select>
Run Code Online (Sandbox Code Playgroud)

更新:为了正确比较您必须实现的集合中的对象,equals()hashCode()相应地.你似乎没有这样做.这是一个基本的例子,按技术ID进行比较:

public boolean equals(Object other) {
    return other instanceof Role && id != null ? id.equals(((Role) other).id) : other == this;
}

public int hashCode() {
    return id != null ? getClass().hashCode() + id.hashCode() : super.hashCode();
}
Run Code Online (Sandbox Code Playgroud)

也可以看看: