0

我正在使用 JSP 开发一个项目,但生成的 html 有问题。

生成的html:“1”转换为“Oui”(法语是),“0”转换为“Non”(法语否)

<select id="privilegesRole" name="privileges" multiple="multiple">
    <option value="5" selected="selected">Role 1</option>
    <option value="4" selected="selected">Role 2</option>
    <option value="Oui" selected="selected">Role 3</option>
    <option value="6" selected="selected">Role 4</option>
    <option value="2" selected="selected">Role 5</option>
    <option value="Non" selected="selected">Role 6</option>
    <option value="3" selected="selected">Role 7</option>
</select>

我的 JSP 代码:

<form:select path="privileges" multiple="true" id="privilegesRole">
    <form:options itemLabel="libelle" itemValue="id" items="${role.privileges}" />
</form:select>

控制器:在我的控制器中值很好

RoleAdministration role = findBy....();
model.addAttribute("role", role);

预先感谢您的帮助

编辑:我有一个 BooleanFormatter.java 但我看不到它会在哪里使用

import org.springframework.format.Formatter;
import org.springframework.stereotype.Component;

@Component
public class BooleanFormatter implements Formatter<Boolean> {

   private String trueLabel = UtilMessages.getInstance().getString("common.oui");

   private String falseLabel = UtilMessages.getInstance().getString("common.non");

   @Override
   public String print(Boolean arg0, Locale arg1) {
       return arg0 ? trueLabel : falseLabel;
   }

   @Override
   public Boolean parse(String arg0, Locale arg1) throws ParseException {
       if (Boolean.TRUE.toString().equals(arg0))
           return true;
       else if (Boolean.FALSE.toString().equals(arg0)) {
           return false;
       } else if (trueLabel.equals(arg0))
           return true;
       else if (falseLabel.equals(arg0)) {
           return false;
       }
       throw new ParseException(arg0, 0);
   }
}

我们已将jsp代码更改为:

<form:select id="privilegesRole" path="privileges" multiple="true" >
    <c:forEach items="${role.privileges}" var="currPrivilegeSelect">
        <option value="<c:out value="${currPrivilegeSelect.id}"/>" 
                title="<c:out value="${currPrivilegeSelect.description}"/>"> 
                <c:out value="${currPrivilegeSelect.libelle}"/> </option>
    </c:forEach>
</form:select>

这有效,但我们不知道为什么。如果您有任何解释,我们将很乐意阅读:)

4

1 回答 1

0

检查您的privileges对象RoleAdministration,查找字段id,根据spring 格式化程序文档,我们可以将 anyfield与注释Formatted或实现相关联custom format annotation。在你的情况下,它可以像

@Formatted(BooleanFormatter.class)或者 @BooleanFormatted

两者都在对象id内部的字段之上。privileges

于 2013-09-04T15:30:37.477 回答