I am developing a web application pls any one tell me ,what are the possible solution for the following drawback
1.When the user log off from the system he /she can able to access the application using browser�s beck button or using early stored url (pls tell me non java script solution )
2.what is the best an easy web application development tools and frame works in java
3.what are the method to improve the web application performances obstacles
Thanks All Saman
Jeroen T Wenting
Ranch Hand
Joined: Apr 21, 2006
Posts: 1847
posted
0
1) you have a lot to learn about web application security... Check user credentials for every request. 2) there are as many opinions as there are people creating such applications. 3) unless you have dramatically poor Java or database performance, either get a faster server or optimise your generated HTML to improve browser rendering speed. Example: we had one JSP customers complained about being slow (sometimes taking ten seconds or more to render, unacceptable for a screen used for order entry of telephone orders). Removing one line of code which was purely cosmetic (it provided some highlighting of some lines) improved that to about 2 seconds. The time spent on the server for that page was measured in milliseconds.