| Author |
converting chapter 9 sequence diagram from JSP to JSF
|
talu singh
Greenhorn
Joined: Jun 07, 2010
Posts: 18
|
posted

0
|
I am trying to convert chapter 9's sequence diagram to use JSF instead of JSP but I am not sure if I am doing it correctly.
Right now, the flow is
createNotice.jsp ------------> :NoticeController --------------------> :NoticeManager
I converted it to
FacesServlet -------------> createNotice.jsf(facelet) ----------------> :NoticeManagedBean -----------------> :NoticeManager
Do I need to put FacesServlet at all in the sequence diagram? Should I use a stereotype on the NoticeManagedBean to show it is a managed bean?
Thanks
|
 |
Kuppusamy Venkatasubramanian
Ranch Hand
Joined: Dec 30, 2004
Posts: 91
|
|
Hi,
I think the right flow to represent in sequence diagram is
createNotice.jsp ------------> :FacesServlet --------------------> :ManagedBean
I don't think it needs to be complecated with the usage of facelets.
Cheers,
Kuppusamy.V.,
|
SCJP1.4, SCBCD 1.3, SCWCD 1.4, SCEA 5, JLPT-N3
My Blog
|
 |
 |
|
|
subject: converting chapter 9 sequence diagram from JSP to JSF
|
|
|