Can i have jsp page with four panels(i mean four areas in which data is coming from DB individually some of them updates every seconds). Some of them are static and for some of them (time charts) data is coming from db has to display without refreshing the page.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35247
7
posted
0
Various approaches are possible: portals (probably involves a lot of work, and a portal server or web app to boot), JSP includes, or a framework like Apache Tiles.
what about portlets is there any thing extra i have to do for running(either in webserver side or in coding side)
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35247
7
posted
0
Yes, portlets will require a rearchitecting of your web app and a substantial rework of your JSP pages. I mentioned them in case you'll have a lot more of these panels coming down the road; in that case it may make sense to use a portal server.
Pyla Rao
Ranch Hand
Joined: Jul 10, 2012
Posts: 50
posted
0
mallikarjun dontamsetti wrote:Can i have jsp page with four panels(i mean four areas in which data is coming from DB individually some of them updates every seconds). Some of them are static and for some of them (time charts) data is coming from db has to display without refreshing the page.
If you using struts framework, we can use struts tiles to solving problem.
Tiles are comes with struts. tiles are useful, and extendable.