outputText tag fails to display text
Given the following code the application executes and displays "some text" on the browser page but fails to display any data in the outputText tags:
jsp page:
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<f:view>
<html>
<head>
<title><h:outputText value="title test"/></title>
<h:outputTextvalue="#{welcome.title}"/>
<head>
<body>
some text
</body>
</html>
Welcome.java:
.
.
.
public class WelcomeBean extends AbstractViewController {
private String title = "Welcome";
.
.
.
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
faces-config.xml:
.
.
<managed-bean>
<managed-bean-name>welcome</managed-bean-name>
<managed-bean-class>base.Welcome</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
<managed-property>
<property-name>title</property-name>
<null-value/>
</managed-property>
</managed-bean>
.
.
Everything about the application works except the outputText tags?

