Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How does servlet performance compare to applets?

0
Posted

How does servlet performance compare to applets?

0

Client-side Java has been dogged by performance problems due to slow loading times, older JVMs without JIT compilation, and inefficient coding. Applets have gained a reputation of poor performance, which often gives Java itself a bad name. Server-side Java, however, doesn’t suffer from the same performance problems. The speed of execution is much better, as the server administrator can install more recent JVMs (some of which are optimized for server-side processing). The load time is virtually instantaneous, as there is no network latency to contend with. You’re also in a better position regarding security restrictions – servlets can establish network connections without the sandbox problems that plague unsigned applets.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123