私は現在JSFとEJBを練習していますが、今は要求された情報を表示するページを取得できません。これには入力テキストと送信ボタン(input.xhtml)と予想される結果は、提出されたテキストを表示することです。私はそれを修正するためにすべてのものを試してみたIssue with EJB/JSF2.0
/input.xhtml @16,56 value="#{welcome.name}": Target Unreachable, identifier 'welcome' resolved to null
、これはこれはBeanですinput.xthml
<ui:define name="content">
<h:form>
<h:panelGrid columns="3">
<h:outputText value="Name:"/>
<h:inputText value="#{welcome.name}" title="name" id="name"
required="true" />
<h:message for="name" style="color: red"/>
</h:panelGrid>
<h:commandButton action="show" value="submit"/>
</h:form>
</ui:define>
</ui:composition>
の一部です。
@ManagedBean
@RequestScoped
public class Welcome {
private String name;
private String message;
public String getMessage() {
return "Hello " + name;
}
public void setMessage(String message) {
this.message = message;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}