what are tiles in struts?
Answers were Sorted based on User's Feedback
Answer / sainagaraju
Tiles are one type of plugin. this is mainly used for to
divide the Browser document into number of tiles if an
application has to use different presentation for a
particular tile we will use the definitions used in struts
config.xml, where we declare the definitions of tile input
messages
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / shinde
Tiles is a plugin in struts.
Where you can give alias for different jsp's.
It works similar to include tag in jsp.
In tiles you can mention what should be a header a footer and content etc.. for a particular page.
The alias can be called from struts config file.
Eg:
If you have an Index page and you have want to include header and a footer in the jsp,
you can do it by using the include tag
orelse you can create an alias for index.jsp in tiles
(eg: index.page) and define the header and footer for that particular page in tiles.
In struts config, instead of forwarding to index.jsp, forward it to index.page.
The difference would be, forwarding to index.jsp, wont contain header and footer, where as forward to index.page
will have header and footer.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / venkateswara reddy
This is difference b/n Struts1.0 and Struts1.1
U cant find the tiles in Struts1.0,But u can find the tiles
in struts1.1
This is used for better presentation
| Is This Answer Correct ? | 1 Yes | 2 No |
What is difference between spring and struts?
What are the core classes of the struts framework?
What are the bundled validators?
Which configuration file is used for storing jsp configuration information in struts?
Does apache struts run on windows?
What are the differences between http direct and http indirect?
when connecting with the database,if database server is down,ho can we handle this exception in struts,how can we send error message to the user?
How many action classes can be used in struts application?
In which method of action class the business logic is executed?
What are the differences between Struts1 and Struts2 or how Struts2 is better than Struts1?
What are the aware interfaces in struts2?
What is the purpose of execute() method?