I have a bean class as "UserBean" and it has an bean value as "name"
/**** UserBean bean class****/
@ManagedBean
@RequestScoped
public class UserBean {
private String name;
public UserBean() {
}
//getter and setter for name
}
now in XHTML file (using JSF2 tags) when i am writing this
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
<title>UseBean as Plain Text</title>
</h:head>
<h:body>
<h:form>
<h1> hello its me #UserBean.name </h:form></h:body></html>
ブラウザでは名前フィールドの値を取得しますが、これが発生したくありません。私が望むのは、ブラウザページにプレーンテキストを表示することです。つまり、「こんにちは、私 #UserBean.name」です。
これを行う方法??