I started to learn JSF, downloaded launched GlassFish 4 (admin port 4848 opened normally) launched a project from Horstman (he wrote) and in general it starts when launched but the properties of the beans are not displayed there. Tell me what's wrong? I would be very grateful for the help
reference to the project
Here is the code:
package com.corejsf; import java.io.Serializable; import javax.inject.Named; import javax.faces.bean.SessionScoped; @Named("user") @SessionScoped public class UserBean implements Serializable { private String name; private String password; public String getName() { return name; } public void setName(String newValue) { name = newValue; } public String getPassword() { return password; } public void setPassword(String newValue) { password = newValue; } }