我正在使用3.0 M3。當我在faces-config.xml中聲明我的託管bean時,它完美地工作,但是當我使用 註釋@Managed bean @Request Scoped嘗試相同的代碼時,它表示目標UN-reachable。Primefaces @managedBean
我也試過2.2,但它又說了同樣的問題。 我使用的玻璃魚V3
@ManagedBean
@SessionScoped
public class Profile implements Serializable{
private String userId;
private String password;
private int code;
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
這裏是我叫他們
<h:form>
<p:panel style="margin-top: 200px;margin-left: 300px;margin-right: 300px;" header="Welcome">
<h:outputText value="Your Code ? "/>
<h:inputText required="true" requiredMessage="Enter user id" value="#{Profile.userId}"/>
<h:outputText value="Password "/>
<h:inputSecret required="true" requiredMessage="Enter password id" value="#Profile.password}"/>
<h:commandButton action="#{Profile.varify}" value="Next"/>
</p:panel>
</h:form>