I am trying to learn the concepts of JEE (EJB,JSF...) and therefore I am working on an example application. Unfortunately I have problems to understand how some concepts should work together and if I am doing it in an correct professional manner. At this point, I am really confused about all these different methods and hope someone can help me out.
The core functionality of my application consists of a document server where registered users can upload documents and describe it with useful information.
The Documents should simply be saved on the Server and all Information should be stored in a MySQL Database. I created three Projects with Netbeans.
- Enterprise Application Project (DocApp)
- EJB Module (DocApp-ejb)
- and a Web Application Project (DocApp-war).
The main things work fine like
- accessing the database with JPA
- uploading files with primefaces FileUploader
- injecting JSF with EJB
- and even the user authorization with JDBC-Realm as shown in this tutorial http://jugojava.blogspot.de/2011/02/jdbc-security-realm-with-glassfish-and.html
My Problem now is, that all pages in a specific subdirectory should only be accessible by registered users.
The only way i see is to use one SessionScoped ManagedBean, instead of using multiple RequestScoped ManagedBeans . This seems to be a bad practice but I have no Idea how to handle this otherwise. The way i understand it, there should be one ManagedBeand for every JSF Page (xhtml).
Is there a good way to handle this or am i doing anything wrong?