Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
858 views
in Technique[技术] by (71.8m points)

jsf 2 - Basic steps for starting session in jsf

Can anyone please tell me the basic steps which are must to perform for creating new session in jsf?

Does a session scoped managed bean redirecting authentic user to some page create session?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Can anyone please tell me the basic steps which are must to perform for creating new session in jsf?

You don't need to do anything with regard to the HTTP session. The servletcontainer will create and manage it for you whenever the application requires so (e.g. whenever you're using a session scoped managed bean in JSF).

See also:


Does a session scoped managed bean redirecting authentic user to some page create session?

JSF doesn't offer builtin facilities to handle authentication. There are several options:

  1. Homegrow it yourself. On login set the logged-in User as a property of a session scoped managed bean and let your application intercept on that.

    See also:


  2. Use the Servlet API provided container managed authentication in combination with a wrapper managed bean.

    See also:


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...