I need your suggestions in designing a Java/J2EE web based application. Here are its characteristics:
- Purely database oriented application (with 10 tables). The database is Oracle.
- Three different types of interfaces/screens: 2.1 WebSphere Portlets (6 Interfaces/Screens) 2.2 Handheld Device (5 Interfaces/Screens) 2.3 Web Application (17 Interfaces/Screens)
- Few of the screens are just report which will be built using Crystal Reports.
- There isn't much business logic involved.
Now my concerns are:
- Which architecture should I go for 2 tier or 3 tier?
- Which frameworks should I use struts/jsf (MVC)? If any? Or should I go for simple POJO based programming without any framework.
- The biggest concern is packaging, I mean I don't want to replicate the business and database layer for each three different types of interfaces I want to develop. Do you think EJB will be good option to expose DB/Business layer? How should I handle this?
- Should I use any specific framework like sitemash for presentation layer?
- Should I use any specific framework for database layer JPA/Hibernate or should I use simple JDBC?
Any comments/suggestions are welcome...
BR SC