这个问题已经在这里有一个答案:
- javax.el.PropertyNotWritableException:/index.xhtml @ 29118值=“”:非法语法设定操作 1个回答
我有这样的形式:
<h:form>
<h:outputLabel value="Entrez un id du compte a supprimer" for="id"/>
<h:inputText id="id" value=""/>
<h:commandButton id="supprimer" value="Supprimer" action="#{compteBancaireMBean.supprimer}"/>
</h:form>
而这种操作方法:
public String supprimer() {
gestionnaireDeCompteBancaire.supprimer(comptebancaire.getId());
return "CompteList";
}
当我提交表单,我得到以下异常:
javax.el.PropertyNotWritableException: /Supprimer.xhtml @14,44 value="": Illegal Syntax for Set Operation
这是怎么造成的,我该怎么解决呢?