InterviewSolution
Saved Bookmarks
| 1. |
What Does Distributable Tag Means In Web.xml ? |
|
Answer» In JAVA world, JEE APPLICATIONS use the concept of distributable web applications to provide session-failover and enable LOAD balancing. You can set a JEE application to SUPPORT session replication by adding distributable tag in web.xml file. <distributable /> In Java world, JEE applications use the concept of distributable web applications to provide session-failover and enable load balancing. You can set a JEE application to support session replication by adding distributable tag in web.xml file. <distributable /> |
|