JSF では、ログインが成功する前にセッションが作成されるようです。つまり、単にログイン ページを要求するだけで、新しいセッションが作成されます。
正常にログインした各ユーザーではなく、受信したリクエストごとにセッションを作成するのは非常に無駄な (そして DDoS 攻撃に対して脆弱) ようです。
以下のコードは非常に一般的ですが、私が言及しているような単純なシナリオを示しています。
index.xhtml:
<html>
<body>
<h:form id="login">
<h:outputLabel for="username">Username</h:outputLabel>
<p:inputText id="username" name="username" value="#{userController.username}"/>
<h:outputLabel for="password">Password</h:outputLabel>
<p:password id="password" name="password" value="#{userController.password}"/>
<p:commandButton id="loginButton" value="login" action="#{loginController.login}"/>
</h:form>
</body>
</html>
LoginController.java
@ViewScoped
public class LoginController implements Serializable {
String username;
String password;
public void login(){
HttpServletRequest request = (HttpServletRequest) FacesContext.getCurrentInstance().getExternalContext().getRequest();
if (request.getSession(false) == null){
System.out.println("No session.");
} else {
System.out.println("Session already exists.");
}
try {
request.login(username, password);
} catch (ServletException e) {
FacesContext.getCurrentInstance.addMessage(null, new FacesMessage("Login failure", e.getMessage()));
}
}
// username and password getters/setters
}
編集:シャンボリックコードの例が修正されました