• 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 - II Cade's component diagram does not mention anything about controller

 
Ranch Hand
Posts: 56
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Ranchers,

Individual Controllers are displayed in sequence diagrams (BidController), Also in class diagram they have displayed a single controller(This descripency is a already being discussed in separate thread), but what about component diagram? I think controllers should also be present in component diagram, just below the JSPs in presentation tier. Right?

Please confirm my understanding.

Thanks!
 
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Gurukant,

Yes I think the controllers should be present in the component diagram as well. I have included them in my presentation components as below:


<<Component>>
Place an Order
JSPs : ( create,search,results,remove)
Managed Beans: ( PlaceOrderController, OrderSearchController ...)


-s




 
Ranch Hand
Posts: 100
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Saket Mittal wrote:Hi Gurukant,

Yes I think the controllers should be present in the component diagram as well. I have included them in my presentation components as below:


<<Component>>
Place an Order
JSPs : ( create,search,results,remove)
Managed Beans: ( PlaceOrderController, OrderSearchController ...)


-s



It does seem correct as Managed Beans can take role of a controller, but doesn't that look incorrect to name JSF managed beans as 'xxxController' ?
 
reply
    Bookmark Topic Watch Topic
  • New Topic