この警告をどのように解決できるかについて、創造的なアイデアを持っている人はいますか?
EL 構文エラー: 式は二項演算子で開始できません
次のコードが原因です:
String.format("#{myController.deleteItemById(%d)}", getId())
私のコードは以前は次のように見えました:
"#{myController.deleteItemById(" + getId() + ")}"
しかし、これによりEclipseは次の警告を生成しました:
EL 構文エラー: 文字列が閉じられていません
アップデート:
@ManagedBean(name = "myController")
@ViewScoped
public class MyController implements Serializable {
private long id;
private HtmlPanelGroup panel;
public long getId() {return this.id; }
private void getPanel() {
/// bunch of code for programatically creating a form
HtmlCommandButton deleteButton = new HtmlCommandButton();
deleteButton.setId(id);
deleteButton.setValue(value);
deleteButton.setActionExpression(/* EL expression used here */);
}
}
<?xml version='1.0' encoding='UTF-8' ?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets">
<!-- some other elements removed for the sake of clarity -->
<h:body>
<h:panelGroup binding="#{myController.panel}" />
</h:body>
</html>