Welcome page in Tiles2 with Struts2

2007-09-24 Thread wild_oscar

I want my welcome page to be a Tiles2 template (with, say, a welcome.jsp
body).

In my Tiles1+Struts1 application the way I achieved this was like:

1) Create a dummy welcome.jsp file
2) Have a WelcomeServlet to listnen to that page
3) Make the servlet forward the request to a welcome.do action
4) Return the action's success to a tiles template

Is there any alternative, cleaner way to do this with T2 and S2? Is using an
interceptor for the same thing better in terms of performance?

-- 
View this message in context: 
http://www.nabble.com/Welcome-page-in-Tiles2-with-Struts2-tf4508341.html#a12857374
Sent from the Struts - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Welcome page in Tiles2 with Struts2

2007-09-24 Thread Antonio Petrelli
2007/9/24, wild_oscar [EMAIL PROTECTED]:


 I want my welcome page to be a Tiles2 template (with, say, a welcome.jsp
 body).

 In my Tiles1+Struts1 application the way I achieved this was like:

 1) Create a dummy welcome.jsp file
 2) Have a WelcomeServlet to listnen to that page
 3) Make the servlet forward the request to a welcome.do action
 4) Return the action's success to a tiles template

 Is there any alternative, cleaner way to do this with T2 and S2?



AFAIK, the simplest way to do it is by creating an index.jsp page that
inserts a definition:

tiles:insertDefinition name=my.home.definition /

HTH
Antonio


Re: Welcome page in Tiles2 with Struts2

2007-09-24 Thread wild_oscar

Which is, in fact, easier!

Thank you, Antonio!

Off-topic: everytime I read your name I remember the brothers from Heroes!

Antonio Petrelli-3 wrote:
 
 2007/9/24, wild_oscar [EMAIL PROTECTED]:


 I want my welcome page to be a Tiles2 template (with, say, a welcome.jsp
 body).

 In my Tiles1+Struts1 application the way I achieved this was like:

 1) Create a dummy welcome.jsp file
 2) Have a WelcomeServlet to listnen to that page
 3) Make the servlet forward the request to a welcome.do action
 4) Return the action's success to a tiles template

 Is there any alternative, cleaner way to do this with T2 and S2?
 
 
 
 AFAIK, the simplest way to do it is by creating an index.jsp page that
 inserts a definition:
 
 tiles:insertDefinition name=my.home.definition /
 
 HTH
 Antonio
 
 

-- 
View this message in context: 
http://www.nabble.com/Welcome-page-in-Tiles2-with-Struts2-tf4508341.html#a12857934
Sent from the Struts - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Welcome page in Tiles2 with Struts2

2007-09-24 Thread Antonio Petrelli
2007/9/24, wild_oscar [EMAIL PROTECTED]:

 Off-topic: everytime I read your name I remember the brothers from
 Heroes!



LOL! I have no relatives with my surname in USA. Anyway I think I can fly
:-P

Antonio