h:link を使用しているページがあります
<h:link outcome="countryPages_View.xhtml">
<img src="images/afghanistan.png" style="border: none;"/>
<f:param name="SaarcCountryId" value="11" />
<f:param name="once" value="true" />
<f:param name="fromPage" value="homePage" />
</h:link>
<h:link outcome="countryPages_View.xhtml">
<h:graphicImage url="images/bangladesh.png" style="margin-left:10px;border: none" />
<f:param name="SaarcCountryId" value="5" />
<f:param name="once" value="true" />
<f:param name="fromPage" value="homePage" />
</h:link>
画像をクリックすると、URLがOKになります。URLはこのようになります
http://localhost:8080/WIT/faces/countryPages_View.xhtml?SaarcCountryId=1&once=true&fromPage=homePage
次に、私のページで、このような値を取得しています
<ui:composition template="./WEB-INF/templates/layout.xhtml">
<ui:define name="title">SAARC Country View</ui:define>
<ui:define name="content">
<f:metadata>
<f:viewParam name="SaarcCountryId" value="#{countryPages_Setup.cntryid}" />
<f:viewParam name="once" value="#{countryPages_Setup.onse}" />
<f:viewParam name="fromPage" value="#{countryPages_Setup.page}}" />
<f:event type="preRenderView" listener="#{countryPages_Setup.beforeRenderPage}" />
</f:metadata>
<h:form id="countryPages" prependId="false">
....
</h:form>
</ui:define>
</ui:composition>
私の豆はこんな感じです
@ManagedBean
@ViewScoped
public class CountryPages_Setup implements Serializable {
private String cntryid;
private String page;
private String onse;
public void beforeRenderPage(ComponentSystemEvent event) {
System.out.println(page);
System.out.println(onse);
System.out.println(cntryid);
} //end of beforeRenderPage()
//Constructor
public CountryPages_Setup() {
} //end of constructor
// getter and setter
public String getCntryid() {
return cntryid;
}
public void setCntryid(String cntryid) {
this.cntryid = cntryid;
}
public String getOnse() {
return onse;
}
public void setOnse(String onse) {
this.onse = onse;
}
...
} //end of class CountryPages_Setup
ページが読み込まれると、エラーが発生します。
exception
javax.servlet.ServletException: javax.el.PropertyNotWritableException: /countryPages_View.xhtml @20,88 value="#{countryPages_Setup.page}}": Illegal Syntax for Set Operation
root cause
javax.faces.component.UpdateModelException: javax.el.PropertyNotWritableException: /countryPages_View.xhtml @20,88 value="#{countryPages_Setup.page}}": Illegal Syntax for Set Operation
root cause
javax.el.PropertyNotWritableException: /countryPages_View.xhtml @20,88 value="#{countryPages_Setup.page}}": Illegal Syntax for Set Operation
なぜこのエラーが発生するのですか? ビュー パラメータのセッターとゲッターを作成しましたか? また、ページが読み込まれると、最初にコンストラクターが呼び出されます。これらの f:param 値をコンストラクターで使用したいと考えています。コンストラクターの後に beforeRenderPage() メソッドが呼び出されると思います。コンストラクターでこれらの値を取得して、コンストラクターで使用できるようにするにはどうすればよいですか?
ありがとう