• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Part 2: can I split the Class Diagram?

 
Greenhorn
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

It is my intention to use Front Controller together with Application Controller and to show the classes in the Class Diagram.
Since I will need to show the Commands objects involved the diagram it is going to grow behind one page.

It is to much if I split the Class Diagram in two: Controller Classes and Business Classes?

And one other question: it is safe to assume the session beans can be injected in the Commands objects or should I use a Service Locator also (given that I can use JEE5)?
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It is fine to split the class diagram. I did that for the same reason.

In JEE 5, you can't inject into other classes. Some people with recent assignments have stated it said/implied you could use a later version of JEE though so I recommend checking the verbiage in your actual assignment.
reply
    Bookmark Topic Watch Topic
  • New Topic